Skip to content

Commit

Permalink
ci: use brew to install ninja
Browse files Browse the repository at this point in the history
  • Loading branch information
georgik committed Nov 16, 2023
1 parent 984555b commit 286a1fe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-x86_64-apple-darwin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,6 @@ jobs:
steps:
- name: Check architecture
run: uname -a
- name: Install ninja-build tool
uses: seanmiddleditch/gha-setup-ninja@v4
- name: Checkout repository
uses: actions/checkout@v4
with:
Expand All @@ -60,7 +58,9 @@ jobs:
run: |
python3 src/bootstrap/configure.py --experimental-targets=Xtensa --release-channel=nightly --release-description="${{ github.event.inputs.release_version }}" --enable-extended --enable-cargo-native-static --tools=clippy,cargo,rustfmt,rust-analyzer-proc-macro-srv --dist-compression-formats='xz' --set rust.jemalloc --enable-lld
- name: Build with x.py - dist packages
run: python3 x.py dist --stage 2 || echo "Ignoring pkg failure"
run: |
brew install ninja
python3 x.py dist --stage 2 || echo "Ignoring pkg failure"
- name: Upload Release Asset
id: upload-release-asset
uses: actions/upload-release-asset@v1
Expand Down

0 comments on commit 286a1fe

Please sign in to comment.