Skip to content

Commit

Permalink
Merge pull request #8 from gavanderhoorn/fix_ci_caching
Browse files Browse the repository at this point in the history
ci: fix caching.
  • Loading branch information
gavanderhoorn authored Jan 21, 2021
2 parents f0fe583 + 8494993 commit 21f9eb7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci_bionic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ jobs:
- name: ccache cache files
uses: actions/cache@v2
with:
path: ${{ env.CI_NAME }}/.ccache
key: ${{ env.CI_NAME }}-ccache-${{ steps.ccache_cache_timestamp.outputs.timestamp }}
path: ${{ env.OS_CODE_NAME }}/.ccache
key: ${{ env.OS_CODE_NAME }}-ccache-${{ steps.ccache_cache_timestamp.outputs.timestamp }}
restore-keys: |
${{ env.CI_NAME }}-ccache-
${{ env.OS_CODE_NAME }}-ccache-
- uses: 'ros-industrial/industrial_ci@master'
env: ${{matrix.env}}
6 changes: 3 additions & 3 deletions .github/workflows/ci_focal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ jobs:
- name: ccache cache files
uses: actions/cache@v2
with:
path: ${{ env.CI_NAME }}/.ccache
key: ${{ env.CI_NAME }}-ccache-${{ steps.ccache_cache_timestamp.outputs.timestamp }}
path: ${{ env.OS_CODE_NAME }}/.ccache
key: ${{ env.OS_CODE_NAME }}-ccache-${{ steps.ccache_cache_timestamp.outputs.timestamp }}
restore-keys: |
${{ env.CI_NAME }}-ccache-
${{ env.OS_CODE_NAME }}-ccache-
- uses: 'ros-industrial/industrial_ci@master'
env: ${{matrix.env}}

0 comments on commit 21f9eb7

Please sign in to comment.