This repository was archived by the owner on May 28, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed
src/tools/miri/.github/workflows Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change 3434 steps :
3535 - uses : actions/checkout@v3
3636
37+ - name : Show Rust version (stable toolchain)
38+ run : |
39+ rustup show
40+ rustc -Vv
41+ cargo -V
42+
3743 # Cache the global cargo directory, but NOT the local `target` directory which
3844 # we cannot reuse anyway when the nightly changes (and it grows quite large
3945 # over time).
@@ -57,21 +63,21 @@ jobs:
5763 if : ${{ steps.cache.outputs.cache-hit != 'true' }}
5864 run : cargo install -f rustup-toolchain-install-master
5965
60- - name : Install "master" toolchain
66+ - name : Install miri toolchain
6167 run : |
6268 if [[ ${{ github.event_name }} == 'schedule' ]]; then
6369 echo "Building against latest rustc git version"
6470 git ls-remote https://github.com/rust-lang/rust/ HEAD | cut -f 1 > rust-version
6571 fi
6672 ./miri toolchain --host ${{ matrix.host_target }}
6773
68- - name : Show Rust version
74+ - name : Show Rust version (miri toolchain)
6975 run : |
7076 rustup show
7177 rustc -Vv
7278 cargo -V
7379
74- - name : Test
80+ - name : Test Miri
7581 run : ./ci/ci.sh
7682
7783 style :
You can’t perform that action at this time.
0 commit comments