Skip to content

Commit

Permalink
Fix action
Browse files Browse the repository at this point in the history
  • Loading branch information
richarddavison committed Jan 13, 2024
1 parent adaebf4 commit 5ee170c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/setup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@ runs:
corepack enable
yarn
- name: Run tests
if: "!(matrix.arch == 'aarch64' && matrix.platform == 'linux')"
if: matrix.arch != 'aarch64' || matrix.platform != 'linux'
run: |
make test-ci
- name: Run tests
if: "matrix.arch == 'aarch64' && matrix.platform == 'linux'"
if: matrix.arch == 'aarch64' && matrix.platform == 'linux'
env:
CARGO_TARGET_AARCH64_UNKNOWN_LINUX_MUSL_RUNNER: qemu-aarch64
CURRENT_TARGET: aarch64-unknown-linux-musl
Expand Down

0 comments on commit 5ee170c

Please sign in to comment.