Skip to content

Commit 3e5e783

Browse files
author
hawjia.lim
committed
fix(e2e): fix e2e tests
1 parent 0e4bb50 commit 3e5e783

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/ci.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,12 @@ jobs:
3636
- name: Set up Go
3737
uses: actions/setup-go@v4
3838
with:
39-
go-version: '1.19'
39+
go-version: "1.20"
4040

4141
- name: Install Go dependencies
42-
run: go install github.com/onsi/ginkgo/v2/ginkgo
42+
run: |
43+
go install github.com/onsi/ginkgo/v2/ginkgo
44+
go install sigs.k8s.io/kwok/cmd/{kwok,kwokctl}@v0.3.0
4345
4446
- name: Download kind
4547
run: curl --insecure -Lo /usr/local/bin/kind https://kind.sigs.k8s.io/dl/v0.16.0/kind-linux-amd64
@@ -48,7 +50,7 @@ jobs:
4850
run: make local-up
4951

5052
- name: Run tests
51-
run: KUBECONFIG=$HOME/.kube/kubeadmiral/kubeadmiral.config EXTRA_GINKGO_FLAGS="--procs=3 -v" make e2e
53+
run: KUBECONFIG=$HOME/.kube/kubeadmiral/kubeadmiral.config EXTRA_GINKGO_FLAGS="--procs=3 -v" EXTRA_E2E_FLAGS="--cluster-provider=kind" make e2e
5254

5355
lint:
5456
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)