Skip to content

Commit

Permalink
wip(ci): only unpack for relevant flagged platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
YOU54F committed Feb 12, 2024
1 parent 1f48200 commit 660b7d1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -198,15 +198,15 @@ jobs:
run: echo "ONLY_DOWNLOAD_PACT_FOR_WINDOWS=true" >> $GITHUB_ENV

- run: ./script/ci/unpack-and-test.sh

if: runner.os == 'Linux' && matrix.docker != true

# Linux aarch64 tests are skipped as QEMU fails when executing the ruby binaries
# Related comment: https://github.com/phusion/passenger/issues/2288#issuecomment-1387625121
- name: Set up QEMU
if: runner.os == 'Linux'
if: runner.os == 'Linux' && matrix.docker == true
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
if: runner.os == 'Linux'
if: runner.os == 'Linux' && matrix.docker == true
uses: docker/setup-buildx-action@v3
- if: runner.os == 'Linux' && matrix.docker == true && matrix.musl != true && matrix.arch == 'arm64'
name: test arm64
Expand Down

0 comments on commit 660b7d1

Please sign in to comment.