-
Notifications
You must be signed in to change notification settings - Fork 18
64 lines (61 loc) · 1.94 KB
/
e2e-long.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
name: Run nightly e2e tests
on:
schedule:
- cron: "0 0 1/2 * *"
workflow_dispatch:
concurrency: ci_e2e_tests
jobs:
e2e_import_gitops:
uses: ./.github/workflows/run-e2e-suite.yaml
with:
test_suite: test/e2e/suites/import-gitops
test_name: Import via GitOps
run_azure_janitor: false
artifact_name: artifacts_import_gitops
MANAGEMENT_CLUSTER_ENVIRONMENT: eks
secrets: inherit
e2e_import_gitops_v3:
uses: ./.github/workflows/run-e2e-suite.yaml
with:
test_suite: test/e2e/suites/import-gitops-v3
test_name: Import via GitOps [v3]
run_azure_janitor: true
artifact_name: artifacts_import_gitops_v3
MANAGEMENT_CLUSTER_ENVIRONMENT: eks
secrets: inherit
e2e_v2prov:
uses: ./.github/workflows/run-e2e-suite.yaml
with:
test_suite: test/e2e/suites/v2prov
test_name: v2 provisioning
run_azure_janitor: false
artifact_name: artifacts_v2prov
MANAGEMENT_CLUSTER_ENVIRONMENT: eks
secrets: inherit
e2e_update_labels:
uses: ./.github/workflows/run-e2e-suite.yaml
with:
test_suite: test/e2e/suites/update-labels
test_name: Update labels
run_azure_janitor: false
artifact_name: artifacts_update_labels
MANAGEMENT_CLUSTER_ENVIRONMENT: eks
secrets: inherit
e2e_embedded_capi_disabled:
uses: ./.github/workflows/run-e2e-suite.yaml
with:
test_suite: test/e2e/suites/embedded-capi-disabled
test_name: Embedded CAPI disabled
run_azure_janitor: false
artifact_name: artifacts_embedded_capi
MANAGEMENT_CLUSTER_ENVIRONMENT: eks
secrets: inherit
e2e_embedded_capi_disabled_v3:
uses: ./.github/workflows/run-e2e-suite.yaml
with:
test_suite: test/e2e/suites/embedded-capi-disabled-v3
test_name: Embedded CAPI disabled [v3]
run_azure_janitor: false
artifact_name: artifacts_embedded_capi_v3
MANAGEMENT_CLUSTER_ENVIRONMENT: eks
secrets: inherit