esp-hal/qa-test/build.rs
Björn Quentin 62994578c2
Fix qa-test build.rs (#2722)
* Fix qa-test build.rs

* Once is enough
2024-12-10 15:32:29 +00:00

13 lines
402 B
Rust

fn main() {
// Allow building QA tests in CI in debug mode
println!("cargo:rustc-check-cfg=cfg(is_not_release)");
println!("cargo:rerun-if-env-changed=CI");
if std::env::var("CI").is_err() {
if let Ok(level) = std::env::var("OPT_LEVEL") {
if level == "0" || level == "1" {
println!("cargo::rustc-cfg=is_not_release");
}
}
}
}