Skip to content

Commit

Permalink
fix miri tests
Browse files Browse the repository at this point in the history
`cargo miri` started to pick the CARGO env var, nuke that
  • Loading branch information
matklad committed Nov 25, 2022
1 parent 18e47d7 commit f68835a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Expand Up @@ -21,7 +21,7 @@ jobs:
- uses: actions/checkout@v2
with:
fetch-depth: 0 # fetch tags for publish

- uses: Swatinem/rust-cache@359a70e43a0bb8a13953b04a90f76428b4959bb6
- run: cargo run -p xtask -- ci
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CRATES_IO_TOKEN }}
Expand Down
1 change: 1 addition & 0 deletions xtask/src/main.rs
Expand Up @@ -11,6 +11,7 @@ fn main() -> xshell::Result<()> {
let sh = Shell::new()?;

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

{
let _s = section("BUILD");
Expand Down

0 comments on commit f68835a

Please sign in to comment.