From c24587f1c82595b05d571f824f9e7469fce3e328 Mon Sep 17 00:00:00 2001 From: Toby Bellwood Date: Tue, 14 Nov 2023 17:45:16 +1100 Subject: [PATCH] accomodate missing sshportal value --- .github/workflows/test-suite.yaml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test-suite.yaml b/.github/workflows/test-suite.yaml index 489d28bf..5bfaa3f1 100644 --- a/.github/workflows/test-suite.yaml +++ b/.github/workflows/test-suite.yaml @@ -121,16 +121,15 @@ jobs: sudo ln -s $(which kubectl) /usr/local/bin/kc - name: Set SSH Portal environment variable - if: matrix.test.sshportal run: | - echo "ENABLE_SSH_PORTAL=${{ matrix.test.sshportal }}" >> $GITHUB_ENV + echo "ENABLE_SSH_PORTAL=${{ matrix.test.sshportal || 'true' }}" >> $GITHUB_ENV - name: Helm-install the test fixtures and fill lagoon-test/ci/linter-values.yaml if: | (steps.list-changed.outputs.changed == 'true') || (contains(github.event.pull_request.labels.*.name, 'needs-testing')) - # run: make -j8 -O fill-test-ci-values TESTS=[${{ matrix.test }}] IMAGE_REGISTRY=testlagoon IMAGE_TAG=main - run: make -j8 -O fill-test-ci-values TESTS=[${{ matrix.test }}] + # run: make -j8 -O fill-test-ci-values TESTS=[${{ matrix.test.test }}] IMAGE_REGISTRY=testlagoon IMAGE_TAG=main + run: make -j8 -O fill-test-ci-values TESTS=[${{ matrix.test.test }}] - name: Free up some disk space if: |