Skip to content

Commit

Permalink
fix(e2e): fix e2e tests
Browse files Browse the repository at this point in the history
  • Loading branch information
hawjia.lim committed Aug 22, 2023
1 parent 0e4bb50 commit 3e5e783
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,12 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.19'
go-version: "1.20"

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

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

lint:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 3e5e783

Please sign in to comment.