mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-08 09:03:57 -07:00
add warning messages
This commit is contained in:
parent
1292f926d9
commit
84f7a00d3f
1 changed files with 4 additions and 2 deletions
6
.github/workflows/desktop-build.yml
vendored
6
.github/workflows/desktop-build.yml
vendored
|
|
@ -202,11 +202,12 @@ jobs:
|
|||
--ccache "$CCACHE_SIZE" $NO_CLIENT
|
||||
.ci/name_build.sh
|
||||
|
||||
# Delete stale ccache so Save can refresh it; failures are non-fatal (e.g. no prior cache)
|
||||
- name: Delete stale ccache
|
||||
if: github.ref == 'refs/heads/master'
|
||||
env:
|
||||
GH_TOKEN: ${{github.token}}
|
||||
run: gh cache delete "${{ steps.ccache_restore.outputs.cache-primary-key }}" || true
|
||||
run: gh cache delete "${{ steps.ccache_restore.outputs.cache-primary-key }}" || echo "warning: cache delete failed"
|
||||
|
||||
- name: Save compiler cache (ccache)
|
||||
if: github.ref == 'refs/heads/master'
|
||||
|
|
@ -449,11 +450,12 @@ jobs:
|
|||
TARGET_MACOS_VERSION: ${{ matrix.override_target }}
|
||||
run: .ci/compile.sh --server --test --vcpkg
|
||||
|
||||
# Delete stale ccache so Save can refresh it; failures are non-fatal (e.g. no prior cache)
|
||||
- name: Delete stale ccache
|
||||
if: github.ref == 'refs/heads/master' && matrix.use_ccache == 1
|
||||
env:
|
||||
GH_TOKEN: ${{github.token}}
|
||||
run: gh cache delete "${{ steps.ccache_restore.outputs.cache-primary-key }}" || true
|
||||
run: gh cache delete "${{ steps.ccache_restore.outputs.cache-primary-key }}" || echo "warning: cache delete failed"
|
||||
|
||||
- name: Save compiler cache (ccache)
|
||||
if: github.ref == 'refs/heads/master' && matrix.use_ccache == 1
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue