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 ba34c78 commit 660ddc5
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 42 deletions.
6 changes: 6 additions & 0 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 # aarch64-linux
python-version: "3.12"
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
85 changes: 44 additions & 41 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion requirements-dev.txt

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 660ddc5

Please sign in to comment.