Skip to content

Commit

Permalink
ci: avoid using actions/cache
Browse files Browse the repository at this point in the history
Signed-off-by: Ryotaro Banno <[email protected]>
  • Loading branch information
ushitora-anqou committed Nov 27, 2024
1 parent 0b01029 commit 81e5557
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 27 deletions.
9 changes: 0 additions & 9 deletions .github/workflows/e2e-multiple-k8s-clusters.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,5 @@ jobs:
- run: sudo apt-get update
- uses: ./.github/actions/purge-unnecessary-deb-packages
- uses: ./.github/actions/set-up-kvm-for-e2e-tests
- name: cache go dependencies
uses: actions/cache@v4
with:
path: |
~/go/pkg/mod
~/.cache/go-build
key: go-${{ hashFiles('go.sum', 'Makefile', 'versions.mk') }}
restore-keys: |
go-
- run: make -C test/e2e setup
- run: make -C test/e2e test-multiple-k8s-clusters
9 changes: 0 additions & 9 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,5 @@ jobs:
- run: sudo apt-get update
- uses: ./.github/actions/purge-unnecessary-deb-packages
- uses: ./.github/actions/set-up-kvm-for-e2e-tests
- name: cache go dependencies
uses: actions/cache@v4
with:
path: |
~/go/pkg/mod
~/.cache/go-build
key: go-${{ hashFiles('go.sum', 'Makefile', 'versions.mk') }}
restore-keys: |
go-
- run: make -C test/e2e setup
- run: make -C test/e2e test
9 changes: 0 additions & 9 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,6 @@ jobs:
go-version-file: "go.mod"
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: cache go dependencies
uses: actions/cache@v4
with:
path: |
~/go/pkg/mod
~/.cache/go-build
key: go-${{ hashFiles('go.sum', 'Makefile', 'versions.mk') }}
restore-keys: |
go-
- run: make generate && make check-uncommitted
- run: make lint
- run: make test

0 comments on commit 81e5557

Please sign in to comment.