File tree 1 file changed +9
-3
lines changed
src/tools/miri/.github/workflows
1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change 34
34
steps :
35
35
- uses : actions/checkout@v3
36
36
37
+ - name : Show Rust version (stable toolchain)
38
+ run : |
39
+ rustup show
40
+ rustc -Vv
41
+ cargo -V
42
+
37
43
# Cache the global cargo directory, but NOT the local `target` directory which
38
44
# we cannot reuse anyway when the nightly changes (and it grows quite large
39
45
# over time).
@@ -57,21 +63,21 @@ jobs:
57
63
if : ${{ steps.cache.outputs.cache-hit != 'true' }}
58
64
run : cargo install -f rustup-toolchain-install-master
59
65
60
- - name : Install "master" toolchain
66
+ - name : Install miri toolchain
61
67
run : |
62
68
if [[ ${{ github.event_name }} == 'schedule' ]]; then
63
69
echo "Building against latest rustc git version"
64
70
git ls-remote https://github.com/rust-lang/rust/ HEAD | cut -f 1 > rust-version
65
71
fi
66
72
./miri toolchain --host ${{ matrix.host_target }}
67
73
68
- - name : Show Rust version
74
+ - name : Show Rust version (miri toolchain)
69
75
run : |
70
76
rustup show
71
77
rustc -Vv
72
78
cargo -V
73
79
74
- - name : Test
80
+ - name : Test Miri
75
81
run : ./ci/ci.sh
76
82
77
83
style :
You can’t perform that action at this time.
0 commit comments