@@ -99,28 +99,28 @@ jobs:
99
99
- name : Build Windows Docker Images
100
100
run : choco install make && RefreshEnv.cmd && make build-docker-images-windows
101
101
102
- e2e :
103
- name : E2E Tests
104
- runs-on : ubuntu-20.04
105
- strategy :
106
- matrix :
107
- k8sVersion : ["1.16", "1.17", "1.18", "1.19", "1.20", "1.21"]
108
- steps :
109
- - name : Set up Go 1.x
110
- uses : actions/setup-go@v2
111
- with :
112
- go-version : ${{ env.DEFAULT_GO_VERSION }}
113
-
114
- - name : Check out code into the Go module directory
115
- uses : actions/checkout@v2
116
-
117
- - name : E2E Tests
118
- run : test/k8s-local-cluster-test/run-test -v ${{ matrix.k8sVersion }}
102
+ # e2e:
103
+ # name: E2E Tests
104
+ # runs-on: ubuntu-20.04
105
+ # strategy:
106
+ # matrix:
107
+ # k8sVersion: ["1.16", "1.17", "1.18", "1.19", "1.20", "1.21"]
108
+ # steps:
109
+ # - name: Set up Go 1.x
110
+ # uses: actions/setup-go@v2
111
+ # with:
112
+ # go-version: ${{ env.DEFAULT_GO_VERSION }}
113
+
114
+ # - name: Check out code into the Go module directory
115
+ # uses: actions/checkout@v2
116
+
117
+ # - name: E2E Tests
118
+ # run: test/k8s-local-cluster-test/run-test -v ${{ matrix.k8sVersion }}
119
119
120
120
releaseLinux :
121
121
name : Release Linux
122
122
runs-on : ubuntu-20.04
123
- needs : [e2e, buildWindows, buildWindowsDocker, buildLinux, buildLinuxDocker, fastTests]
123
+ needs : [buildWindows, buildWindowsDocker, buildLinux, buildLinuxDocker, fastTests]
124
124
if : github.event_name == 'push' && contains(github.ref, 'refs/tags/')
125
125
steps :
126
126
- name : Set up Go 1.x
@@ -141,7 +141,7 @@ jobs:
141
141
releaseWindows :
142
142
name : Release Windows
143
143
runs-on : windows-2019
144
- needs : [e2e, buildWindows, buildWindowsDocker, buildLinux, buildLinuxDocker, fastTests]
144
+ needs : [buildWindows, buildWindowsDocker, buildLinux, buildLinuxDocker, fastTests]
145
145
if : github.event_name == 'push' && contains(github.ref, 'refs/tags/')
146
146
steps :
147
147
- name : Set up Go 1.x
0 commit comments