We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f0cfc2 commit bfd4058Copy full SHA for bfd4058
.github/workflows/main.yaml
@@ -119,7 +119,6 @@ jobs:
119
rustup update "$channel" --no-self-update
120
rustup default "$channel"
121
rustup target add "${{ matrix.target }}"
122
- rustup component add llvm-tools-preview
123
- uses: taiki-e/install-action@nextest
124
- uses: Swatinem/rust-cache@v2
125
with:
crates/symbol-check/src/main.rs
@@ -84,7 +84,7 @@ fn exec_cargo_with_args(args: &[&str]) -> Vec<PathBuf> {
84
}
85
86
87
- cmd.wait().expect("failed to wait on Cargo");
+ assert!(cmd.wait().expect("failed to wait on Cargo").success());
88
89
assert!(!check_files.is_empty(), "no compiler_builtins rlibs found");
90
println!("Collected the following rlibs to check: {check_files:#?}");
0 commit comments