Build Frameworks #4
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 Frameworks | |
on: | |
workflow_dispatch | |
jobs: | |
build-ios: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout ANGLE sources | |
run: | | |
git clone https://github.com/google/angle ./ANGLE | |
- name: Fetch depot_tools | |
run: | | |
git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git ./ANGLE/depot_tools | |
- name: Build | |
run: | | |
cd ANGLE | |
export PATH="$(pwd)/depot_tools:$PATH" | |
python scripts/bootstrap.py | |
gclient sync | |
gn gen out/Release --args="is_debug=false target_os=\"ios\" ios_enable_code_signing=false ios_deployment_target=\"14.0\" angle_build_all=false target_environment=\"device\"" | |
autoninja -C out/Release |