From 075e92fe49eb065caed57ec98944c430488e3e1a Mon Sep 17 00:00:00 2001 From: Boming Zhang Date: Thu, 19 Sep 2024 19:12:08 -0400 Subject: [PATCH] ci: remove cache --- .gitea/workflows/test.yaml | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml index 979a988..315917f 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/test.yaml @@ -27,25 +27,6 @@ jobs: go env -w GO111MODULE=on go env -w GOPROXY=https://goproxy.io,direct chown -R root:root /root/.ssh - - name: Get go-hashfiles - uses: https://gitea.com/actions/go-hashfiles@v0.0.1 - id: hash-go - with: - patterns: |- - go.mod - go.sum - - name: Echo hash - run: echo ${{ steps.hash-go.outputs.hash }} - - name: Cache go - id: cache-go - uses: https://gitea.com/actions/cache@v3 - with: - path: |- - /root/go/pkg/mod - /root/.cache/go-build - key: go_cache-${{ steps.hash-go.outputs.hash }} - restore-keys: |- - go_cache-${{ steps.hash-go.outputs.hash }} - name: Build run: make build - name: Test