Skip to content

Commit 04b523f

Browse files
committed
CI tweaks and show which stable Rust we are using
1 parent 1dd13ca commit 04b523f

File tree

1 file changed

+9
-3
lines changed
  • src/tools/miri/.github/workflows

1 file changed

+9
-3
lines changed

src/tools/miri/.github/workflows/ci.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,12 @@ jobs:
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:

0 commit comments

Comments
 (0)