Skip to content

Commit

Permalink
Fix variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
hebasto committed Dec 20, 2024
1 parent afd42dc commit 2aeb35d
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:

env:
FILE_ENV: './ci/test/00_setup_env_win64.sh'
DANGER_CI_ON_HOST_CACHE_FOLDERS: 1
DANGER_CI_ON_HOST_FOLDERS: 1

steps:
- name: Checkout
Expand All @@ -48,20 +48,20 @@ jobs:
${{ env.DEPENDS_DIR }}/built
key: ${{ github.job }}-depends-${{ hashFiles('depends/**', '${{ env.FILE_ENV }}') }}

- name: Restore Ccache cache
id: ccache-cache
uses: actions/cache/restore@v4
with:
path: ${{ env.CCACHE_DIR }}
key: ${{ github.job }}-ccache-${{ github.run_id }}
restore-keys: ${{ github.job }}-ccache-
# - name: Restore Ccache cache
# id: ccache-cache
# uses: actions/cache/restore@v4
# with:
# path: ${{ env.CCACHE_DIR }}
# key: ${{ github.job }}-ccache-${{ github.run_id }}
# restore-keys: ${{ github.job }}-ccache-

- name: CI script
run: ./ci/test_run_all.sh

- name: Save Ccache cache
uses: actions/cache/save@v4
if: github.event_name != 'pull_request' && steps.ccache-cache.outputs.cache-hit != 'true'
with:
path: ${{ env.CCACHE_DIR }}
key: ${{ github.job }}-ccache-${{ github.run_id }}
# - name: Save Ccache cache
# uses: actions/cache/save@v4
# if: github.event_name != 'pull_request' && steps.ccache-cache.outputs.cache-hit != 'true'
# with:
# path: ${{ env.CCACHE_DIR }}
# key: ${{ github.job }}-ccache-${{ github.run_id }}

0 comments on commit 2aeb35d

Please sign in to comment.