Skip to content

Commit

Permalink
Fix nightly CI workflow
Browse files Browse the repository at this point in the history
This excludes metrics tests requiring an OCI registry to be set up, as
is the case for new HelmApp tests, from the initial run which does not
involve any test infrastructure.
Those tests are run once the OCI registry is up, as done in the regular
end-to-end tests workflow.
  • Loading branch information
weyfonk committed Jan 10, 2025
1 parent 6d7d981 commit 53a36b5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/e2e-nightly-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,8 @@ jobs:
ginkgo --github-output --label-filter='!infra-setup' e2e/single-cluster e2e/keep-resources
# 2. Run tests for metrics
ginkgo --github-output e2e/metrics
SHARD=shard1 ginkgo --github-output e2e/metrics
ginkgo --github-output --label-filter='!oci-registry' e2e/metrics
SHARD=shard1 ginkgo --github-output --label-filter='!oci-registry' e2e/metrics
# 3. Run tests requiring only the git server
e2e/testenv/infra/infra setup --git-server=true
Expand All @@ -115,6 +115,7 @@ jobs:
# 5. Run tests requiring an OCI registry
e2e/testenv/infra/infra setup --oci-registry=true
ginkgo --github-output --label-filter='oci-registry' e2e/single-cluster
ginkgo --github-output --label-filter='oci-registry' e2e/metrics
# 6. Tear down all infra
e2e/testenv/infra/infra teardown
Expand Down

0 comments on commit 53a36b5

Please sign in to comment.