-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow for installing a released version of gloo during k8s tests (#20)
* field for released gloo * don't need test directory for released versions * got if statement backwards * add changelog * go version for tests * Revert "go version for tests" This reverts commit 076a83d. * go mod tidy in GHA * try go 1.18 * try ginkgo 1.16
- Loading branch information
Showing
5 changed files
with
205 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,10 +18,10 @@ jobs: | |
- uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
- name: Set up Go 1.14 | ||
- name: Set up Go 1.18.2 | ||
uses: actions/setup-go@v1 | ||
with: | ||
go-version: 1.14 | ||
go-version: 1.18.2 | ||
- uses: actions/cache@v1 | ||
with: | ||
path: ~/go/pkg/mod | ||
|
@@ -34,5 +34,5 @@ jobs: | |
- uses: engineerd/[email protected] | ||
- name: Run tests | ||
run: | | ||
go get -v github.com/onsi/ginkgo/ginkgo@v1.12.0 && export PATH=$PATH:$(go env GOPATH)/bin/ | ||
go install github.com/onsi/ginkgo/ginkgo@v1.16 && export PATH=$PATH:$(go env GOPATH)/bin/ | ||
ginkgo -r -p -failFast -randomizeSuites -randomizeAllSpecs -skipPackage=./installutils/kubeinstall,./debugutils/test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
changelog: | ||
- type: NEW_FEATURE | ||
issueLink: https://github.com/solo-io/solo-projects/issues/4191 | ||
resolvesIssue: false | ||
description: Install released versions of gloo. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.