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 227826c commit bdea5c5Copy full SHA for bdea5c5
crates/tools/dev/src/main.rs
@@ -107,6 +107,12 @@ fn build(target: &str) {
107
}
108
109
fn test(target: Option<String>) {
110
+ if env::var("GITHUB_ACTIONS").is_ok() {
111
+ if cfg!(target_os = "linux") {
112
+ run("sudo", &["apt", "install", "musl-tools"]);
113
+ }
114
115
+
116
let Some(target) = target else {
117
run("cargo", &["test", "--workspace"]);
118
return;
0 commit comments