From c62076956ce8f672e9a512f4a54a3d652094a59c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niccol=C3=B2=20Fei?= Date: Thu, 27 Nov 2025 17:35:40 +0100 Subject: [PATCH] chore: skip imageVolume E2Es MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Niccolò Fei --- .github/workflows/reusable-e2e.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/reusable-e2e.yml b/.github/workflows/reusable-e2e.yml index 69eab99..58895c0 100644 --- a/.github/workflows/reusable-e2e.yml +++ b/.github/workflows/reusable-e2e.yml @@ -53,7 +53,6 @@ jobs: POSTGRES_IMG: ${{ inputs.postgres_img }} POSTGRES_KIND: "PostgreSQL" POSTGRES_MAJOR_UPGRADE_IMAGE_REGISTRY: "ghcr.io/${{ github.repository_owner }}/postgresql-trunk" - POSTGIS_MAJOR_UPGRADE_IMAGE_REGISTRY: "ghcr.io/${{ github.repository_owner }}/postgresql-trunk" DOCKER_SERVER: ghcr.io DOCKER_USERNAME: ${{ github.actor }} @@ -135,11 +134,11 @@ jobs: - name: Setting up defaults run: | - # Exlude backup/recovery tests + # Exlude backup/recovery and image-volume tests if [ -z "${{ env.FEATURE_TYPE }}" ]; then - echo "FEATURE_TYPE=!backup-restore" >> $GITHUB_ENV + echo "FEATURE_TYPE=!(backup-restore || image-volume-extensions)" >> $GITHUB_ENV else - echo "FEATURE_TYPE=${{ env.FEATURE_TYPE }},!backup-restore" >> $GITHUB_ENV + echo "FEATURE_TYPE=!(backup-restore || image-volume-extensions) && ${{ env.FEATURE_TYPE }}" >> $GITHUB_ENV fi - name: Run Kind End-to-End tests