Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🌱 Consolidate e2e CI jobs #993

Merged
merged 1 commit into from
Jul 1, 2024
Merged
Show file tree
Hide file tree
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
22 changes: 14 additions & 8 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,19 @@ on:
- main

jobs:
extension-developer-e2e:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: actions/setup-go@v5
with:
go-version-file: go.mod

- name: Run the extension developer e2e test
run: |
make extension-developer-e2e

e2e-kind:
runs-on: ubuntu-latest
steps:
Expand All @@ -21,14 +34,7 @@ jobs:
go-version-file: go.mod

- name: Run e2e tests
run: |
# By default make stops building on first non-zero exit code which
# in case of E2E tests will mean that code coverage will only be
# collected on successful runs. We want to collect coverage even
# after failing tests.
# With -k flag make will continue the build, but will return non-zero
# exit code in case of any errors.
Comment on lines -25 to -30
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This commit is not longer relevant since at some point -k was removed.

ARTIFACT_PATH=/tmp/artifacts make test-e2e
run: ARTIFACT_PATH=/tmp/artifacts make test-e2e

- uses: cytopia/upload-artifact-retry-action@v0.1.7
if: failure()
Expand Down
23 changes: 0 additions & 23 deletions .github/workflows/operator-developer-e2e.yaml

This file was deleted.

Loading