Ensure version comes from the just-installed toolchain

This commit is contained in:
David Tolnay 2022-07-15 11:11:37 -07:00
parent d335e67920
commit 19603a2b92
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82

View file

@ -50,9 +50,9 @@ runs:
- id: rustc-version - id: rustc-version
run: | run: |
: create cachekey : create cachekey
DATE=$(rustc --version --verbose | sed -ne 's/^commit-date: \(20[0-9][0-9]\)-\([01][0-9]\)-\([0-3][0-9]\)$/\1\2\3/p') DATE=$(rustc +${{inputs.toolchain}} --version --verbose | sed -ne 's/^commit-date: \(20[0-9][0-9]\)-\([01][0-9]\)-\([0-3][0-9]\)$/\1\2\3/p')
HASH=$(rustc --version --verbose | sed -ne 's/^commit-hash: //p') HASH=$(rustc +${{inputs.toolchain}} --version --verbose | sed -ne 's/^commit-hash: //p')
echo "::set-output name=cachekey::$(echo $DATE$HASH | head -c12)" echo "::set-output name=cachekey::$(echo $DATE$HASH | head -c12)"
shell: bash shell: bash
- run: rustc --version --verbose - run: rustc +${{inputs.toolchain}} --version --verbose
shell: bash shell: bash