mirror of
https://github.com/dtolnay/rust-toolchain.git
synced 2024-11-13 04:56:33 +02:00
Check cache key against expected
This commit is contained in:
parent
7476109106
commit
4050d6ccba
1 changed files with 12 additions and 2 deletions
14
.github/workflows/ci.yml
vendored
14
.github/workflows/ci.yml
vendored
|
@ -15,14 +15,20 @@ jobs:
|
|||
matrix:
|
||||
name: [Linux]
|
||||
os: [ubuntu]
|
||||
rust: [nightly, beta, stable, 1.0.0]
|
||||
rust: [nightly, beta, stable, 1.62.0, 1.0.0]
|
||||
include:
|
||||
- name: macOS
|
||||
os: macos
|
||||
rust: nightly
|
||||
- name: macOS
|
||||
os: macos
|
||||
rust: 1.62.0
|
||||
- name: Windows
|
||||
os: windows
|
||||
rust: nightly
|
||||
- name: Windows
|
||||
os: windows
|
||||
rust: 1.62.0
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: ./
|
||||
|
@ -30,6 +36,10 @@ jobs:
|
|||
id: toolchain
|
||||
with:
|
||||
toolchain: ${{matrix.rust}}
|
||||
- name: Check ${{'${{steps.toolchain.outputs.cachekey}}'}}
|
||||
- name: echo ${{'${{steps.toolchain.outputs.cachekey}}'}}
|
||||
run: echo '${{steps.toolchain.outputs.cachekey}}'
|
||||
- name: check ${{'${{steps.toolchain.outputs.cachekey}}'}}
|
||||
if: matrix.rust == '1.62.0'
|
||||
run: cmp -s <(echo ${{steps.toolchain.outputs.cachekey}}) <(echo 20220627a831)
|
||||
shell: bash
|
||||
- run: rustc --version
|
||||
|
|
Loading…
Reference in a new issue