From 8fb182657eef07ab232370e4da359578a19e3fc1 Mon Sep 17 00:00:00 2001 From: Lilis Iskandar Date: Sat, 21 Dec 2024 16:19:26 +0800 Subject: [PATCH] .github/workflows: Remove cache steps from test-build.yml Signed-off-by: Lilis Iskandar --- .github/workflows/test-build.yml | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/.github/workflows/test-build.yml b/.github/workflows/test-build.yml index 00835da..32be0c1 100644 --- a/.github/workflows/test-build.yml +++ b/.github/workflows/test-build.yml @@ -15,30 +15,6 @@ jobs: go-version: '1.13.15' - run: go version - - name: Cache SDL2 - id: cache-sdl2 - uses: actions/cache@v3 - with: - path: | - SDL2-$SDL_VERSION - IMG-$IMG_VERSION - MIX-$MIX_VERSION - TTF-$TTF_VERSION - key: ${{ runner.os }}-sdl2-${{ hashFiles('**/*.h') }} - restore-keys: | - ${{ runner.os }}-sdl2- - - - name: Cache Go - id: cache-go - uses: actions/cache@v3 - with: - path: | - ~/.cache/go-build - ~/go/pkg/mod - key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} - restore-keys: | - ${{ runner.os }}-go- - - name: set PKG_CONFIG_PATH environment variable run: | echo "PKG_CONFIG_PATH=$HOME/.local/lib/pkgconfig:$PKG_CONFIG_PATH" >> $GITHUB_ENV