Skip to content

Commit

Permalink
fix(ci): skip setup on Mac OS (#540)
Browse files Browse the repository at this point in the history
  • Loading branch information
curiositycasualty authored Sep 22, 2022
1 parent 1b3d025 commit 731524b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .ci/setup_ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ if [ "$RESTY_IMAGE_TAG" != "bionic" ] && [ "$RESTY_IMAGE_TAG" != "18.04" ] && [
exit 0
fi

if uname -a | grep -qs -i darwin; then
exit 0
fi

sudo apt-get install -y \
qemu \
binfmt-support \
Expand Down

0 comments on commit 731524b

Please sign in to comment.