Skip to content

Commit 7fc5380

Browse files
committed
Coverity CI: use own caches
Coverity CI uses ubuntu-latest but C/C++ CI ubuntu-22.04, so that the builds won't be compatible.
1 parent 28e8ca8 commit 7fc5380

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/coverity-scan.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,17 +66,17 @@ jobs:
6666
uses: actions/cache@main
6767
with:
6868
path: '/var/tmp/ffmpeg'
69-
key: cache-ffmpeg-${{ runner.os }}-${{ hashFiles( '.github/scripts/Linux/install_ffmpeg.sh', '.github/scripts/Linux/install_other.sh', '.github/scripts/Linux/ffmpeg-patches/*') }}
69+
key: cache-${{ github.workflow }}-ffmpeg-${{ runner.os }}-${{ hashFiles( '.github/scripts/Linux/install_ffmpeg.sh', '.github/scripts/Linux/install_other.sh', '.github/scripts/Linux/ffmpeg-patches/*') }}
7070
- name: Cache SDL
7171
uses: actions/cache@main
7272
with:
7373
path: '/var/tmp/sdl'
74-
key: cache-sdl-${{ runner.os }}-${{ hashFiles( '.github/scripts/Linux/install_sdl.sh' ) }}
74+
key: cache-${{ github.workflow }}-sdl-${{ runner.os }}-${{ hashFiles( '.github/scripts/Linux/install_sdl.sh' ) }}
7575
- name: Cache GLFW
7676
uses: actions/cache@main
7777
with:
7878
path: '/var/tmp/glfw'
79-
key: cache-glfw-${{ runner.os }}-${{ hashFiles( '.github/scripts/Linux/install_glfw.sh' ) }}
79+
key: cache-${{ github.workflow }}-glfw-${{ runner.os }}-${{ hashFiles( '.github/scripts/Linux/install_glfw.sh' ) }}
8080
- name: bootstrap
8181
run: |
8282
. .github/scripts/environment.sh

0 commit comments

Comments
 (0)