Skip to content

Build Frameworks

Build Frameworks #4

Workflow file for this run

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