diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml index 6c84d4c7..2c27ce94 100644 --- a/.github/actions/setup/action.yml +++ b/.github/actions/setup/action.yml @@ -59,7 +59,7 @@ runs: continue-on-error: true with: name: ${{ env.CTK_CACHE_KEY }} - path: ./${{ env.CTK_CACHE_FILENAME }} + path: ./ - name: Get CUDA components if: ${{ steps.ctk-get-cache.outcome == 'failure' }} @@ -136,6 +136,7 @@ runs: run: | CUDA_PATH="./cuda_toolkit" mkdir $CUDA_PATH + ls -l tar -xzvf $CTK_CACHE_FILENAME -C $CUDA_PATH --strip-components=1 ls -l $CUDA_PATH if [ ! -d "$CUDA_PATH/include" ]; then diff --git a/.github/actions/test/action.yml b/.github/actions/test/action.yml index 4fab178f..a1480810 100644 --- a/.github/actions/test/action.yml +++ b/.github/actions/test/action.yml @@ -55,13 +55,14 @@ runs: continue-on-error: true with: name: ${{ env.CTK_CACHE_KEY }} - path: ./${{ env.CTK_CACHE_FILENAME }} + path: ./ - name: Restore CTK cache shell: bash --noprofile --norc -xeuo pipefail {0} run: | CUDA_PATH="./cuda_toolkit" mkdir $CUDA_PATH + ls -l tar -xzvf $CTK_CACHE_FILENAME -C $CUDA_PATH --strip-components=1 ls -l $CUDA_PATH if [ ! -d "$CUDA_PATH/include" ]; then