Commit 4747c63 1 parent 6feab51 commit 4747c63 Copy full SHA for 4747c63
File tree 1 file changed +7
-9
lines changed
1 file changed +7
-9
lines changed Original file line number Diff line number Diff line change @@ -169,10 +169,10 @@ jobs:
169
169
- uses : actions/checkout@v2
170
170
with :
171
171
submodules : true
172
- - name : Setup Rust toolchain
173
- uses : ./.github/actions/setup-builder
174
- with :
175
- rust-version : stable
172
+ - name : Setup toolchain
173
+ run : |
174
+ rustup toolchain install stable
175
+ rustup default stable
176
176
- uses : actions/setup-python@v2
177
177
with :
178
178
python-version : " 3.10"
@@ -372,12 +372,10 @@ jobs:
372
372
target
373
373
key : ${{ runner.os }}-cargo-miri-${{ hashFiles('**/Cargo.lock') }}
374
374
- name : Setup Rust toolchain
375
- uses : ./.github/actions/setup-builder
376
- with :
377
- rust-version : ${{ matrix.rust }}
378
- - name : Install MIRI
379
375
run : |
380
- rustup component add miri
376
+ rustup toolchain install ${{ matrix.rust }}
377
+ rustup default ${{ matrix.rust }}
378
+ rustup component add rustfmt clippy miri
381
379
- name : Run Miri Checks
382
380
env :
383
381
RUST_BACKTRACE : full
You can’t perform that action at this time.
0 commit comments