File tree Expand file tree Collapse file tree 4 files changed +307
-300
lines changed Expand file tree Collapse file tree 4 files changed +307
-300
lines changed Original file line number Diff line number Diff line change @@ -68,18 +68,10 @@ jobs:
68
68
- Nutanix
69
69
# Uncomment below once we have the ability to run e2e tests on other providers from GHA.
70
70
# - AWS
71
- cni :
72
- - Calico
73
- - Cilium
74
- addon-strategy :
75
- - ClusterResourceSet
76
- - HelmAddon
77
71
fail-fast : false
78
72
uses : ./.github/workflows/e2e.yml
79
73
with :
80
74
provider : ${{ matrix.provider }}
81
- cni : ${{ matrix.cni }}
82
- addon-strategy : ${{ matrix.addon-strategy }}
83
75
focus : Quick start
84
76
runs-on : ${{ matrix.provider == 'Nutanix' && 'self-hosted-ncn-dind' || 'ubuntu-22.04' }}
85
77
secrets : inherit
@@ -101,18 +93,10 @@ jobs:
101
93
# Uncomment below once we have the ability to run e2e tests on other providers from GHA.
102
94
# - AWS
103
95
# - Nutanix
104
- cni :
105
- - Calico
106
- - Cilium
107
- addon-strategy :
108
- - ClusterResourceSet
109
- - HelmAddon
110
96
fail-fast : false
111
97
uses : ./.github/workflows/e2e.yml
112
98
with :
113
99
provider : ${{ matrix.provider }}
114
- cni : ${{ matrix.cni }}
115
- addon-strategy : ${{ matrix.addon-strategy }}
116
100
focus : Self-hosted
117
101
runs-on : ${{ matrix.provider == 'Nutanix' && 'self-hosted-ncn-dind' || 'ubuntu-22.04' }}
118
102
secrets : inherit
Original file line number Diff line number Diff line change 8
8
description : Infrastructure provider to run e2e tests with
9
9
type : string
10
10
required : true
11
- cni :
12
- description : CNI to run e2e tests with
13
- type : string
14
- required : true
15
- addon-strategy :
16
- description : Addon strategy to run e2e tests with
17
- type : string
18
- required : true
19
11
skip :
20
12
description : e2e tests to skip
21
13
type : string
95
87
fi
96
88
97
89
- name : Run e2e tests
98
- run : devbox run -- make e2e-test E2E_LABEL='provider:${{ inputs.provider }} && cni:${{ inputs.cni }} && addonStrategy:${{ inputs.addon-strategy }} ' E2E_SKIP='${{ inputs.skip }}' E2E_FOCUS='${{ inputs.focus }}' E2E_VERBOSE=true
90
+ run : devbox run -- make e2e-test E2E_LABEL='provider:${{ inputs.provider }}' E2E_SKIP='${{ inputs.skip }}' E2E_FOCUS='${{ inputs.focus }}' E2E_VERBOSE=true
99
91
env :
100
92
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
101
93
DOCKER_HUB_USERNAME : ${{ secrets.DOCKER_HUB_USERNAME }}
You can’t perform that action at this time.
0 commit comments