Skip to content

Commit

Permalink
fix(action): add missing ginkgo dependencies in other workflow (#141)
Browse files Browse the repository at this point in the history
Signed-off-by: prateekpandey14 <[email protected]>
  • Loading branch information
prateekpandey14 committed Jan 8, 2021
1 parent 13a0d23 commit e3e4c56
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,11 @@ jobs:
- name: Checkout
uses: actions/[email protected]

- name: Set up Go 1.14
uses: actions/setup-go@v2
with:
go-version: 1.14.7

- name: Setup Minikube-Kubernetes
uses: manusa/[email protected]
with:
Expand All @@ -74,8 +79,8 @@ jobs:
- name: Build images locally
run: make csi-driver-image || exit 1;

- name: Install ginkgo
run: go get github.com/onsi/ginkgo/ginkgo && go get github.com/onsi/gomega/...
- name: Install tests dependencies
run: make bootstrap

- name: Running tests
run: ./ci/ci-test.sh
Expand Down
9 changes: 7 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@ jobs:
- name: Checkout
uses: actions/[email protected]

- name: Set up Go 1.14
uses: actions/setup-go@v2
with:
go-version: 1.14.7

- name: Setup Minikube-Kubernetes
uses: manusa/[email protected]
with:
Expand All @@ -49,8 +54,8 @@ jobs:
- name: Build images locally
run: make csi-driver-image || exit 1;

- name: Install ginkgo
run: go get github.com/onsi/ginkgo/ginkgo && go get github.com/onsi/gomega/...
- name: Install tests dependencies
run: make bootstrap

- name: Running tests
run: ./ci/ci-test.sh
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/run_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ func verifyCVDeleted(cvName string) {
return fmt.Errorf("cstorvolume exists %s", cvName)
}
return nil
}).Should(Succeed())
}, 300, 10).Should(Succeed())
}

func verifySnapshotDeleted(snapName string) {
Expand Down

0 comments on commit e3e4c56

Please sign in to comment.