Skip to content

Commit

Permalink
upgrade ccache action (Xilinx#1677)
Browse files Browse the repository at this point in the history
  • Loading branch information
fifield authored Aug 9, 2024
1 parent 058ba76 commit ca6c1ea
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/buildAndTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
unzip -q mlir-*.whl
- name: Ccache for C++ compilation
uses: hendrikmuhs/ccache-action@ca3acd2731eef11f1572ccb126356c2f9298d35e
uses: hendrikmuhs/ccache-action@v1.2
with:
# Since there are now several compilation jobs running in parallel,
# use a different key per job to avoid a ccache writing race condition
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/buildAndTestPythons.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ jobs:
unzip -q mlir-*.whl
- name: Ccache for C++ compilation
uses: hendrikmuhs/ccache-action@ca3acd2731eef11f1572ccb126356c2f9298d35e
uses: hendrikmuhs/ccache-action@v1.2
with:
# Since there are now several compilation jobs running in parallel,
# use a different key per job to avoid a ccache writing race condition
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/generateDocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:

- name: Ccache for C++ compilation
# https://github.com/hendrikmuhs/ccache-action/releases/tag/v1.2.9
uses: hendrikmuhs/ccache-action@ca3acd2731eef11f1572ccb126356c2f9298d35e
uses: hendrikmuhs/ccache-action@v1.2
with:
key: ${{ runner.os }}-releaseasserts-${{ steps.get-submodule-hash.outputs.hash }}
max-size: 1G
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lintAndFormat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ jobs:
- name: Ccache for C++ compilation
if: steps.changed-files.outputs.changed-files != ''
uses: hendrikmuhs/ccache-action@ca3acd2731eef11f1572ccb126356c2f9298d35e
uses: hendrikmuhs/ccache-action@v1.2
with:
key: ${{ runner.os }}-${{ matrix.ubuntu_version }}-${{ steps.get-llvm-commit-hash.outputs.hash }}-code-cov
max-size: 1G
Expand Down

0 comments on commit ca6c1ea

Please sign in to comment.