From b2ab8179465efc56cd5dcef570571b63cbc68a5d Mon Sep 17 00:00:00 2001 From: Igor Zinovyev Date: Wed, 12 Jun 2024 18:41:47 +0300 Subject: [PATCH] Skipping wpcomsh for plugin update tests, h/t @anomiex. --- .github/files/test-plugin-update/prepare-zips.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/files/test-plugin-update/prepare-zips.sh b/.github/files/test-plugin-update/prepare-zips.sh index 7f1830014c1f7..381baebe7eed1 100755 --- a/.github/files/test-plugin-update/prepare-zips.sh +++ b/.github/files/test-plugin-update/prepare-zips.sh @@ -8,6 +8,11 @@ jq -e '.' <<<"$BETAJSON" &>/dev/null mkdir work mkdir zips while IFS=$'\t' read -r SRC MIRROR SLUG; do + if [[ "$SLUG" == wpcomsh ]]; then + echo "Skipping $SLUG, doesn't work on self-hosted sites." + continue + fi + echo "::group::Creating $SLUG-dev.zip" mv "build/$MIRROR" "work/$SLUG" touch "work/$SLUG/ci-flag.txt"