Skip to content

Commit

Permalink
chore(deps): allow continuing on error for macos-14 aka aarch64-darwi…
Browse files Browse the repository at this point in the history
…n builds
  • Loading branch information
cpcloud committed Oct 29, 2024
1 parent 097e495 commit 465037a
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/nix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,15 @@ jobs:
- "3.10"
- "3.11"
- "3.12"
continue-on-error:
- false
include:
- os: ubuntu-arm64-24.04
- os: ubuntu-arm64-24.04 # aarch64-linux
python-version: "3.12"
- os: macos-14
python-version: "3.10"
continue-on-error: false
- os: macos-14 # aarch64-darwin
python-version: "3.12"
continue-on-error: true
steps:
- name: checkout
uses: actions/checkout@v4
Expand All @@ -61,13 +65,15 @@ jobs:
extraPullNames: nix-community,poetry2nix

- name: nix build and test
continue-on-error: ${{ matrix.continue-on-error }}
run: |
set -euo pipefail
version='${{ matrix.python-version }}'
nix build ".#ibis${version//./}" --fallback --keep-going --print-build-logs
- name: nix build devShell
continue-on-error: ${{ matrix.continue-on-error }}
run: |
set -euo pipefail
Expand Down

0 comments on commit 465037a

Please sign in to comment.