diff --git a/qa-test/build.rs b/qa-test/build.rs index 4be49f0b6..04019a531 100644 --- a/qa-test/build.rs +++ b/qa-test/build.rs @@ -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() { - println!("cargo::rustc-cfg=is_not_release"); + if let Ok(level) = std::env::var("OPT_LEVEL") { + if level == "0" || level == "1" { + println!("cargo::rustc-cfg=is_not_release"); + } + } } }