Skip to content

Commit bfd4058

Browse files
committed
Remove the now-unneeded llvm-tools-preview
Since a working `nm` is no longer needed as part of CI, the rustup component can be removed.
1 parent 9f0cfc2 commit bfd4058

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

.github/workflows/main.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,6 @@ jobs:
119119
rustup update "$channel" --no-self-update
120120
rustup default "$channel"
121121
rustup target add "${{ matrix.target }}"
122-
rustup component add llvm-tools-preview
123122
- uses: taiki-e/install-action@nextest
124123
- uses: Swatinem/rust-cache@v2
125124
with:

crates/symbol-check/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ fn exec_cargo_with_args(args: &[&str]) -> Vec<PathBuf> {
8484
}
8585
}
8686

87-
cmd.wait().expect("failed to wait on Cargo");
87+
assert!(cmd.wait().expect("failed to wait on Cargo").success());
8888

8989
assert!(!check_files.is_empty(), "no compiler_builtins rlibs found");
9090
println!("Collected the following rlibs to check: {check_files:#?}");

0 commit comments

Comments
 (0)