Skip to content

Commit

Permalink
temp
Browse files Browse the repository at this point in the history
  • Loading branch information
e00E committed Nov 9, 2024
1 parent 1b0cbf3 commit ba95be0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,14 @@ jobs:
check_minimum_supported_rust_version:
runs-on: ubuntu-24.04
steps:
- run: sudo apt-get -qq install gcc-multilib qemu-user > /dev/null
- run: cargo install --quiet cargo-show-asm
#- run: sudo apt-get -qq install gcc-multilib qemu-user > /dev/null
#- run: cargo install --quiet cargo-show-asm
- run: |
rustup toolchain list
rustup toolchain uninstall default
rustup toolchain list
rustup --quiet toolchain install 1.71 --profile=minimal --component=clippy
rustup --quiet default 1.71
- uses: actions/checkout@v4
- run: cargo fetch --quiet --locked
- run: cargo --quiet xtask all
#- uses: actions/checkout@v4
#- run: cargo fetch --quiet --locked
#- run: cargo --quiet xtask all
2 changes: 1 addition & 1 deletion xtask/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ fn check(target: &Target, clippy: bool) -> Result<()> {
"--all-targets",
]);
if clippy {
command.args(["--", "-D", "=warnings"]);
command.args(["--", "-D", "warnings"]);
}
run_command(&mut command)?;
Ok(())
Expand Down

0 comments on commit ba95be0

Please sign in to comment.