Skip to content

Commit

Permalink
remove cacheing
Browse files Browse the repository at this point in the history
  • Loading branch information
akijakya committed Apr 1, 2022
1 parent 7b95996 commit 04ce713
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 34 deletions.
17 changes: 0 additions & 17 deletions .github/workflows/is-test-v2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,26 +19,9 @@ jobs:
with:
go-version: 1.16

- id: go-cache-paths
run: |
echo "::set-output name=go-build::$(go env GOCACHE)"
echo "::set-output name=go-mod::$(go env GOMODCACHE)"
- name: Checkout code
uses: actions/checkout@v2

- name: Go Build Cache
uses: actions/cache@v2
with:
path: ${{ steps.go-cache-paths.outputs.go-build }}
key: ${{ runner.os }}-go-build-${{ hashFiles('go.sum') }}

- name: Go Mod Cache
uses: actions/cache@v2
with:
path: ${{ steps.go-cache-paths.outputs.go-mod }}
key: ${{ runner.os }}-go-mod-${{ hashFiles('go.sum') }}

- name: Create kind cluster and run tests
run: |
make test-integrated-service-up
Expand Down
17 changes: 0 additions & 17 deletions .github/workflows/is-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,26 +19,9 @@ jobs:
with:
go-version: 1.16

- id: go-cache-paths
run: |
echo "::set-output name=go-build::$(go env GOCACHE)"
echo "::set-output name=go-mod::$(go env GOMODCACHE)"
- name: Checkout code
uses: actions/checkout@v2

- name: Go Build Cache
uses: actions/cache@v2
with:
path: ${{ steps.go-cache-paths.outputs.go-build }}
key: ${{ runner.os }}-go-build-${{ hashFiles('go.sum') }}

- name: Go Mod Cache
uses: actions/cache@v2
with:
path: ${{ steps.go-cache-paths.outputs.go-mod }}
key: ${{ runner.os }}-go-mod-${{ hashFiles('go.sum') }}

- name: Create kind cluster and run tests
run: |
make test-integrated-service-up
Expand Down

0 comments on commit 04ce713

Please sign in to comment.