Skip to content

Commit

Permalink
chore: use test gh env for hermetic/perf tests (#91)
Browse files Browse the repository at this point in the history
  • Loading branch information
smrz2001 authored Jan 31, 2024
1 parent 5433af9 commit 3eb0d22
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/hermetic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ jobs:
run-tests:
name: Test
runs-on: ubuntu-latest
environment: test
needs:
- generate-matrix
- build-driver
Expand All @@ -111,8 +112,8 @@ jobs:
name: Get GKE credentials
uses: 'google-github-actions/get-gke-credentials@v1'
with:
cluster_name: ${{ secrets.GKE_CLUSTER }}
location: ${{ secrets.GKE_ZONE }}
cluster_name: ${{ vars.GKE_CLUSTER }}
location: ${{ vars.GKE_ZONE }}
- uses: actions/download-artifact@master
with:
name: hermetic-driver
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/hermetic_long_lived.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ jobs:
run-tests:
name: Test
runs-on: ubuntu-latest
environment: test
needs:
- generate-matrix
- build-driver
Expand All @@ -107,8 +108,8 @@ jobs:
name: Get GKE credentials
uses: 'google-github-actions/get-gke-credentials@v1'
with:
cluster_name: ${{ secrets.GKE_CLUSTER }}
location: ${{ secrets.GKE_ZONE }}
cluster_name: ${{ vars.GKE_CLUSTER }}
location: ${{ vars.GKE_ZONE }}
- uses: actions/download-artifact@master
with:
name: hermetic-driver
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/performance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ jobs:
run-performance-tests:
name: Performance Tests
runs-on: ubuntu-latest
environment: test
needs:
- generate-matrix
- build-driver
Expand All @@ -79,8 +80,8 @@ jobs:
- name: Get GKE credentials
uses: 'google-github-actions/get-gke-credentials@v1'
with:
cluster_name: ${{ secrets.GKE_CLUSTER }}
location: ${{ secrets.GKE_ZONE }}
cluster_name: ${{ vars.GKE_CLUSTER }}
location: ${{ vars.GKE_ZONE }}
- uses: actions/download-artifact@master
with:
name: hermetic-driver
Expand Down

0 comments on commit 3eb0d22

Please sign in to comment.