Skip to content

Commit

Permalink
accomodate missing sshportal value
Browse files Browse the repository at this point in the history
  • Loading branch information
tobybellwood committed Nov 14, 2023
1 parent fd7a044 commit c24587f
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/test-suite.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down

0 comments on commit c24587f

Please sign in to comment.