Skip to content

Commit

Permalink
fix: return save ccache condition back for llvm
Browse files Browse the repository at this point in the history
  • Loading branch information
antonbaliasnikov committed May 16, 2024
1 parent 2965f41 commit 54bcf78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/build-llvm/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ runs:
append-timestamp: false
max-size: "2G"
verbose: 2
save: true # ${{ github.event_name == 'push' && !startsWith(github.ref, 'refs/tags/') }}
save: ${{ github.event_name == 'push' && !startsWith(github.ref, 'refs/tags/') }}

# CCACHE_BASEDIR, CCACHE_NOHASHDIR, and CCACHE_COMPILERCHECK
# are allowing to cache compiler output across different
Expand Down

0 comments on commit 54bcf78

Please sign in to comment.