Completing angle cross builds for ios, android, osx #188
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build | |
# Controls when the action will run. | |
on: | |
# Triggers the workflow on push or pull request events | |
push: | |
paths: | |
- .github/workflows/build.yml | |
- 1k/build* | |
- 1k/ios.cmake | |
- src/**/build* | |
- src/**/install* | |
- src/**/patch* | |
- src/**/clean* | |
- src/**/rel* | |
workflow_dispatch: | |
# Inputs the workflow accepts. | |
inputs: | |
no_dll: | |
# actions run ID | |
description: 'Do not build windows lib as dll' | |
# Default value if no value is explicitly provided | |
default: '' | |
# Input has to be provided for the workflow to run | |
required: false | |
env: | |
GH_XCODE_VER: 14.2 | |
VS_DEPLOYMENT_TARGET: 10.0.17763.0 # for Windows Store(UWP) Apps only | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
linux: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
env: | |
BUILD_ARCH: x64 | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v4 | |
- name: Build | |
shell: pwsh | |
run: ./build.ps1 linux $env:BUILD_ARCH | |
- name: Upload | |
uses: actions/upload-artifact@v3 | |
with: | |
path: ./${{ env.install_path }}/** | |
name: ${{ env.install_path }} | |
osx: | |
# The type of runner that the job will run on | |
runs-on: macos-12 | |
strategy: | |
matrix: | |
arch: | |
- x64 | |
- arm64 | |
env: | |
BUILD_ARCH: ${{ matrix.arch }} | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v4 | |
- name: Setup Xcode version | |
uses: maxim-lobanov/setup-xcode@v1 | |
id: setup-xcode | |
with: | |
xcode-version: '${{ env.GH_XCODE_VER }}' | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- name: Build | |
shell: pwsh | |
run: ./build.ps1 osx $env:BUILD_ARCH | |
- name: Upload | |
uses: actions/upload-artifact@v3 | |
with: | |
path: ./${{ env.install_path }}/** | |
name: ${{ env.install_path }} | |
ios: | |
# The type of runner that the job will run on | |
runs-on: macos-12 | |
strategy: | |
matrix: | |
arch: | |
- arm64 | |
- x64 | |
env: | |
BUILD_ARCH: ${{ matrix.arch }} | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v4 | |
- name: Setup Xcode version | |
uses: maxim-lobanov/setup-xcode@v1 | |
id: setup-xcode | |
with: | |
xcode-version: '${{ env.GH_XCODE_VER }}' | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- name: Build | |
shell: pwsh | |
run: ./build.ps1 ios $env:BUILD_ARCH | |
- name: Upload | |
uses: actions/upload-artifact@v3 | |
with: | |
path: ./${{ env.install_path }}/** | |
name: ${{ env.install_path }} | |
tvos: | |
# The type of runner that the job will run on | |
runs-on: macos-12 | |
strategy: | |
matrix: | |
arch: | |
- arm64 | |
- x64 | |
env: | |
BUILD_ARCH: ${{ matrix.arch }} | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v4 | |
- name: Setup Xcode version | |
uses: maxim-lobanov/setup-xcode@v1 | |
id: setup-xcode | |
with: | |
xcode-version: '${{ env.GH_XCODE_VER }}' | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- name: Build | |
shell: pwsh | |
run: ./build.ps1 tvos $env:BUILD_ARCH | |
- name: Upload | |
uses: actions/upload-artifact@v3 | |
with: | |
path: ./${{ env.install_path }}/** | |
name: ${{ env.install_path }} | |
android: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
arch: | |
- armv7 | |
- arm64 | |
- x86 | |
- x64 | |
env: | |
BUILD_ARCH: ${{ matrix.arch }} | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v4 | |
- name: Setup NDK | |
shell: pwsh | |
run: ./1k/build.ps1 -p android -a $env:BUILD_ARCH -setupOnly -ndkOnly | |
- name: Build | |
shell: pwsh | |
run: ./build.ps1 android $env:BUILD_ARCH | |
- name: Upload | |
uses: actions/upload-artifact@v3 | |
with: | |
path: ./${{ env.install_path }}/** | |
name: ${{ env.install_path }} | |
win32: | |
# The type of runner that the job will run on | |
runs-on: windows-latest | |
# Run a job for each of the specified target architectures: | |
strategy: | |
matrix: | |
arch: | |
- x86 | |
- x64 | |
env: | |
NO_DLL: ${{ github.event.inputs.no_dll }} | |
BUILD_ARCH: ${{ matrix.arch }} | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v4 | |
- uses: ilammy/msvc-dev-cmd@v1 | |
with: | |
toolset: '14.37' | |
arch: ${{ env.BUILD_ARCH }} | |
- name: Build | |
shell: pwsh | |
run: .\build.ps1 win32 $env:BUILD_ARCH | |
- name: Upload | |
uses: actions/upload-artifact@v3 | |
with: | |
path: ./${{ env.install_path }}/** | |
name: ${{ env.install_path }} | |
winrt: | |
# The type of runner that the job will run on | |
runs-on: windows-latest | |
# Run a job for each of the specified target architectures: | |
strategy: | |
matrix: | |
arch: | |
- x64 | |
- amd64_arm64 | |
env: | |
NO_DLL: ${{ github.event.inputs.no_dll }} | |
BUILD_ARCH: ${{ matrix.arch }} | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v4 | |
- uses: ilammy/msvc-dev-cmd@v1 | |
with: | |
toolset: '14.37' | |
arch: ${{ env.BUILD_ARCH }} | |
uwp: true | |
- name: Build | |
shell: pwsh | |
run: .\build.ps1 winrt $env:BUILD_ARCH 'zlib,openssl,cares,curl,jpeg-turbo,luajit,angle' | |
- name: Upload | |
uses: actions/upload-artifact@v3 | |
with: | |
path: ./${{ env.install_path }}/** | |
name: ${{ env.install_path }} | |
wasm: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v4 | |
- name: Build | |
shell: pwsh | |
run: ./build.ps1 wasm '*' 'openssl' | |
- name: Upload | |
uses: actions/upload-artifact@v3 | |
with: | |
path: ./${{ env.install_path }}/** | |
name: ${{ env.install_path }} |