|
|
@@ -15,6 +15,7 @@ env:
|
|
|
# a step 'if env.GHCR_USERNAME' != ""', so we copy these to succinctly test whether
|
|
|
# credentials have been provided before trying to run steps that need them.
|
|
|
GHCR_USERNAME: ${{ secrets.GHCR_USERNAME }}
|
|
|
+ GCP_SM_SA_JSON: ${{ secrets.GCP_SM_SA_JSON}}
|
|
|
|
|
|
name: e2e tests
|
|
|
|
|
|
@@ -81,6 +82,7 @@ jobs:
|
|
|
- name: Run e2e Tests
|
|
|
run: |
|
|
|
export PATH=$PATH:$(go env GOPATH)/bin
|
|
|
+ export GCP_SM_SA_JSON=${{env.GCP_SM_SA_JSON}}
|
|
|
go get github.com/onsi/ginkgo/ginkgo
|
|
|
make test.e2e
|
|
|
|
|
|
@@ -150,6 +152,7 @@ jobs:
|
|
|
- name: Run e2e Tests
|
|
|
run: |
|
|
|
export PATH=$PATH:$(go env GOPATH)/bin
|
|
|
+ export GCP_SM_SA_JSON=${{env.GCP_SM_SA_JSON}}
|
|
|
go get github.com/onsi/ginkgo/ginkgo
|
|
|
make test.e2e
|
|
|
|