Skip to content

Commit f68835a

Browse files
committed
fix miri tests
`cargo miri` started to pick the CARGO env var, nuke that
1 parent 18e47d7 commit f68835a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/ci.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- uses: actions/checkout@v2
2222
with:
2323
fetch-depth: 0 # fetch tags for publish
24-
24+
- uses: Swatinem/rust-cache@359a70e43a0bb8a13953b04a90f76428b4959bb6
2525
- run: cargo run -p xtask -- ci
2626
env:
2727
CARGO_REGISTRY_TOKEN: ${{ secrets.CRATES_IO_TOKEN }}

xtask/src/main.rs

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ fn main() -> xshell::Result<()> {
1111
let sh = Shell::new()?;
1212

1313
let _e = push_toolchain(&sh, "stable")?;
14+
let _e = sh.push_env("CARGO", "");
1415

1516
{
1617
let _s = section("BUILD");

0 commit comments

Comments
 (0)