Complete milestone 09 world integration gate (#75)
Some checks failed
Native code generation / deterministic (push) Failing after 8m37s
Imaging and meshing gate / native (push) Successful in 5m24s
Native Rust workspace compile / compile (push) Failing after 6m15s

This commit is contained in:
2026-08-10 21:19:43 +00:00
parent 55424dbd7f
commit fdda05b53f
18 changed files with 767 additions and 82 deletions

View File

@@ -1,6 +1,7 @@
use std::path::Path;
const KEYS: [&str; 3] = ["GRID_USER", "GRID_PASSWORD", "GRID_LOGIN_URL"];
const LIVE_OPT_IN: &str = "RUN_LIVE_TESTS";
fn dotenv_has(path: &Path, key: &str) -> bool {
std::fs::read_to_string(path).is_ok_and(|contents| {
@@ -22,9 +23,19 @@ fn main() {
for key in KEYS {
println!("cargo:rerun-if-env-changed={key}");
}
if KEYS.iter().all(|key| {
std::env::var(key).is_ok_and(|value| !value.trim().is_empty()) || dotenv_has(&dotenv, key)
}) {
println!("cargo:rerun-if-env-changed={LIVE_OPT_IN}");
let opted_in = std::env::var(LIVE_OPT_IN).is_ok_and(|value| {
matches!(
value.trim().to_ascii_lowercase().as_str(),
"1" | "true" | "yes"
)
});
if opted_in
&& KEYS.iter().all(|key| {
std::env::var(key).is_ok_and(|value| !value.trim().is_empty())
|| dotenv_has(&dotenv, key)
})
{
println!("cargo:rustc-cfg=live_grid_credentials");
}
}