From 4c8d18d70978881e4cf3dff1999a5dfc8e3f19b8 Mon Sep 17 00:00:00 2001 From: Carlos Salas Date: Wed, 10 Jul 2024 13:00:45 +0200 Subject: [PATCH 1/2] chore: fix e2e naming in workflow yaml Signed-off-by: Carlos Salas --- .github/workflows/e2e-long.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/e2e-long.yaml b/.github/workflows/e2e-long.yaml index dcf23aa3..c3947990 100644 --- a/.github/workflows/e2e-long.yaml +++ b/.github/workflows/e2e-long.yaml @@ -39,7 +39,7 @@ jobs: uses: ./.github/workflows/run-e2e-suite.yaml with: test_suite: $(pwd)/test/e2e/suites/embedded-capi-disabled - test_name: Update labels + test_name: Embedded CAPI disabled run_azure_janitor: false artifact_name: artifacts_embedded_capi use_eks: true From 94cc0403bbd0359966d201877b23771b491e4347 Mon Sep 17 00:00:00 2001 From: Carlos Salas Date: Wed, 10 Jul 2024 13:16:49 +0200 Subject: [PATCH 2/2] test: add v3 suites to nightly run Signed-off-by: Carlos Salas --- .github/workflows/e2e-long.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.github/workflows/e2e-long.yaml b/.github/workflows/e2e-long.yaml index c3947990..f6026380 100644 --- a/.github/workflows/e2e-long.yaml +++ b/.github/workflows/e2e-long.yaml @@ -17,6 +17,15 @@ jobs: artifact_name: artifacts_import_gitops use_eks: true secrets: inherit + e2e_import_gitops_v3: + uses: ./.github/workflows/run-e2e-suite.yaml + with: + test_suite: $(pwd)/test/e2e/suites/import-gitops-v3 + test_name: Import via GitOps [v3] + run_azure_janitor: false + artifact_name: artifacts_import_gitops_v3 + use_eks: true + secrets: inherit e2e_v2prov: uses: ./.github/workflows/run-e2e-suite.yaml with: @@ -44,3 +53,12 @@ jobs: artifact_name: artifacts_embedded_capi use_eks: true secrets: inherit + e2e_embedded_capi_disabled_v3: + uses: ./.github/workflows/run-e2e-suite.yaml + with: + test_suite: $(pwd)/test/e2e/suites/embedded-capi-disabled-v3 + test_name: Embedded CAPI disabled [v3] + run_azure_janitor: false + artifact_name: artifacts_embedded_capi_v3 + use_eks: true + secrets: inherit