-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
split e2e and upgrade-e2e into separate ghas to make upgrade-e2e easi…
…er to re-run Signed-off-by: Per Goncalves da Silva <pegoncal@redhat.com>
- Loading branch information
Per Goncalves da Silva
committed
Jan 15, 2025
1 parent
8e6ee58
commit 57f652a
Showing
2 changed files
with
28 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: e2e | ||
|
||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
merge_group: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
upgrade-e2e: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version-file: go.mod | ||
|
||
- name: Run the upgrade e2e test | ||
run: ARTIFACT_PATH=/tmp/artifacts make test-upgrade-e2e | ||
|
||
- uses: cytopia/upload-artifact-retry-action@v0.1.7 | ||
if: failure() | ||
with: | ||
name: upgrade-e2e-artifacts | ||
path: /tmp/artifacts/ |