From 731524bf1303c2e06a07bbd8a4afd1afe8e490bb Mon Sep 17 00:00:00 2001 From: Isa Farnik Date: Thu, 22 Sep 2022 09:04:44 -0700 Subject: [PATCH] fix(ci): skip setup on Mac OS (#540) --- .ci/setup_ci.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.ci/setup_ci.sh b/.ci/setup_ci.sh index 704d343e..ef7912b7 100755 --- a/.ci/setup_ci.sh +++ b/.ci/setup_ci.sh @@ -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 \