Skip to content

Commit

Permalink
chore: update e2e k8s versions (#2637)
Browse files Browse the repository at this point in the history
* run on new k8s versions

Signed-off-by: zachaller <[email protected]>

* debug_enabled is a string

Signed-off-by: zachaller <[email protected]>

---------

Signed-off-by: zachaller <[email protected]>
  • Loading branch information
zachaller authored Mar 13, 2023
1 parent b18a700 commit b1a1e15
Show file tree
Hide file tree
Showing 3 changed files with 6,488 additions and 5,346 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ jobs:
kubernetes-minor-version:
- 1.23
- 1.24
- 1.25
- 1.26
name: Run end-to-end tests
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -74,10 +76,10 @@ jobs:
run: make start-e2e 2>&1 | sed -r "s/[[:cntrl:]]\[[0-9]{1,3}m//g" > /tmp/e2e-controller.log &
- name: Setup tmate session
uses: mxschmitt/action-tmate@v3
if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.debug_enabled}}
if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.debug_enabled == 'true'}}
- name: Run e2e tests
run: make test-e2e
if: ${{ !(github.event_name == 'workflow_dispatch' && github.event.inputs.debug_enabled) }}
if: ${{ !(github.event_name == 'workflow_dispatch' && github.event.inputs.debug_enabled == 'true') }}
- name: Output Rerun Overview
run: |
[[ -f rerunreport.txt ]] && cat rerunreport.txt || echo "No rerun report found"
Expand Down
Loading

0 comments on commit b1a1e15

Please sign in to comment.