Fix qa-test build.rs (#2722)

* Fix qa-test build.rs

* Once is enough
This commit is contained in:
Björn Quentin 2024-12-10 16:32:29 +01:00 committed by GitHub
parent 35d3ed301c
commit 62994578c2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,8 +2,11 @@ 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");
#[cfg(debug_assertions)]
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");
}
}
}
}