Update workflow file.

This commit is contained in:
ArthurSonzogni 2025-04-24 14:39:15 +02:00
parent dad4a67fcb
commit 8feac77d8c
No known key found for this signature in database
GPG Key ID: 41D98248C074CD6C

View File

@ -24,12 +24,10 @@ jobs:
- name: Linux Clang - name: Linux Clang
os: ubuntu-latest os: ubuntu-latest
compiler: llvm compiler: llvm
gcov_executable: "llvm-cov gcov"
- name: MacOS clang - name: MacOS clang
os: macos-latest os: macos-latest
compiler: llvm compiler: llvm
gcov_executable: "llvm-cov gcov"
- name: Windows MSVC - name: Windows MSVC
os: windows-latest os: windows-latest
@ -53,6 +51,14 @@ jobs:
disk-cache: ${{ github.workflow }} disk-cache: ${{ github.workflow }}
repository-cache: false repository-cache: false
# Need on macos. See https://github.com/bazelbuild/bazel/issues/21718
- Clean Bazel cache 1
run: bazel clean --expunge
# Need on macos. See https://github.com/bazelbuild/bazel/issues/21718
- Clean Bazel cache 2
run: bazel fetch --configure --force
- name: "Build with Bazel" - name: "Build with Bazel"
run: bazel build ... run: bazel build ...