diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1285c948..23c06d54 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -99,28 +99,28 @@ jobs: - name: Build Windows Docker Images run: choco install make && RefreshEnv.cmd && make build-docker-images-windows - e2e: - name: E2E Tests - runs-on: ubuntu-20.04 - strategy: - matrix: - k8sVersion: ["1.16", "1.17", "1.18", "1.19", "1.20", "1.21"] - steps: - - name: Set up Go 1.x - uses: actions/setup-go@v2 - with: - go-version: ${{ env.DEFAULT_GO_VERSION }} - - - name: Check out code into the Go module directory - uses: actions/checkout@v2 - - - name: E2E Tests - run: test/k8s-local-cluster-test/run-test -v ${{ matrix.k8sVersion }} + # e2e: + # name: E2E Tests + # runs-on: ubuntu-20.04 + # strategy: + # matrix: + # k8sVersion: ["1.16", "1.17", "1.18", "1.19", "1.20", "1.21"] + # steps: + # - name: Set up Go 1.x + # uses: actions/setup-go@v2 + # with: + # go-version: ${{ env.DEFAULT_GO_VERSION }} + + # - name: Check out code into the Go module directory + # uses: actions/checkout@v2 + + # - name: E2E Tests + # run: test/k8s-local-cluster-test/run-test -v ${{ matrix.k8sVersion }} releaseLinux: name: Release Linux runs-on: ubuntu-20.04 - needs: [e2e, buildWindows, buildWindowsDocker, buildLinux, buildLinuxDocker, fastTests] + needs: [buildWindows, buildWindowsDocker, buildLinux, buildLinuxDocker, fastTests] if: github.event_name == 'push' && contains(github.ref, 'refs/tags/') steps: - name: Set up Go 1.x @@ -141,7 +141,7 @@ jobs: releaseWindows: name: Release Windows runs-on: windows-2019 - needs: [e2e, buildWindows, buildWindowsDocker, buildLinux, buildLinuxDocker, fastTests] + needs: [buildWindows, buildWindowsDocker, buildLinux, buildLinuxDocker, fastTests] if: github.event_name == 'push' && contains(github.ref, 'refs/tags/') steps: - name: Set up Go 1.x