rok commented on code in PR #50047:
URL: https://github.com/apache/arrow/pull/50047#discussion_r3341007077
##########
.github/workflows/cpp_extra.yml:
##########
@@ -141,12 +141,11 @@ jobs:
persist-credentials: false
fetch-depth: 0
submodules: recursive
- - name: Cache Docker Volumes
- uses: actions/cache@v5
+ - name: Restore Docker Volumes
+ uses:
apache/infrastructure-actions/stash/restore@0ba14156c9f4c3cfbe4b0c9f36339ab0f8d81e53
with:
path: .docker
- key: extra-${{ matrix.image }}-${{ hashFiles('cpp/**') }}
- restore-keys: extra-${{ matrix.image }}-
+ key: extra-${{ matrix.image }}
Review Comment:
```suggestion
key: cpp-extra-${{ matrix.image }}
```
##########
.github/workflows/cpp_extra.yml:
##########
@@ -169,6 +168,14 @@ jobs:
done
fi
archery docker run ${{ matrix.run-options || '' }} ${{ matrix.image
}}
+ - name: Save Docker Volumes
+ if: ${{ !cancelled() }}
+ continue-on-error: true
+ uses:
apache/infrastructure-actions/stash/save@0ba14156c9f4c3cfbe4b0c9f36339ab0f8d81e53
+ with:
+ path: .docker
+ key: extra-${{ matrix.image }}
Review Comment:
```suggestion
key: cpp-extra-${{ matrix.image }}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]