Skip to content

Commit

Permalink
Fix don't build a test runner image for macOS.
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkusPettersson98 committed Oct 11, 2023
1 parent 42cd82a commit 3553290
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion test/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,7 @@ else
cargo build --bin test-runner --release --target "${TARGET}"
fi

./scripts/build-runner-image.sh
# Don't build a runner image for macOS.
if [[ $TARGET != aarch64-apple-darwin ]]; then
./scripts/build-runner-image.sh
fi

0 comments on commit 3553290

Please sign in to comment.