Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions .github/workflows/reusable-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down Expand Up @@ -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
Expand Down