diff options
| author | Valentin Popov <valentin@popov.link> | 2026-06-25 03:20:02 +0300 |
|---|---|---|
| committer | Valentin Popov <valentin@popov.link> | 2026-06-25 10:45:32 +0300 |
| commit | 0a2d1bcc32a86b4332c64b32410aa7953a544358 (patch) | |
| tree | a8103abf50bcbd22722424daff61ea27ebc83163 /xtask/src/main.rs | |
| parent | ba69bdb6eab57817b45055d60ea1d2f6687757a8 (diff) | |
| download | fparkan-0a2d1bcc32a86b4332c64b32410aa7953a544358.tar.xz fparkan-0a2d1bcc32a86b4332c64b32410aa7953a544358.zip | |
chore(stage0): scope native smoke closure to macos
Diffstat (limited to 'xtask/src/main.rs')
| -rw-r--r-- | xtask/src/main.rs | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/xtask/src/main.rs b/xtask/src/main.rs index dc87bbc..242f25f 100644 --- a/xtask/src/main.rs +++ b/xtask/src/main.rs @@ -38,7 +38,7 @@ const CI_ACCEPTANCE_ROADMAP: &str = "fixtures/acceptance/stage_0_roadmap.md"; const CI_ACCEPTANCE_COVERAGE: &str = "fixtures/acceptance/coverage.tsv"; const CI_ACCEPTANCE_REPORT: &str = "target/fparkan/acceptance/stage-0-audit.json"; const STAGE_PACKAGE_MANIFEST: &str = "fixtures/acceptance/stage_packages.toml"; -const REQUIRED_NATIVE_SMOKE_PLATFORMS: &[&str] = &["linux", "macos", "windows"]; +const REQUIRED_NATIVE_SMOKE_PLATFORMS: &[&str] = &["macos"]; const APPROVED_REGISTRY_SOURCE: &str = "registry+https://github.com/rust-lang/crates.io-index"; const SUPPLY_CHAIN_BANNED_PACKAGES: &[&str] = &["native-tls", "openssl", "openssl-sys"]; const PINNED_RUST_TOOLCHAIN: &str = "1.87.0"; @@ -2430,8 +2430,8 @@ mod tests { } #[test] - fn native_smoke_audit_accepts_complete_three_platform_pass() { - let reports = ["linux", "macos", "windows"] + fn native_smoke_audit_accepts_complete_required_platform_pass() { + let reports = ["macos"] .into_iter() .map(|platform| { ( @@ -2501,8 +2501,6 @@ mod tests { let failures = audit_native_smoke_reports(&reports); - assert!(failures.contains(&"linux: missing native smoke report".to_string())); - assert!(failures.contains(&"windows: missing native smoke report".to_string())); assert!( failures.contains(&"macos: status expected \"passed\", found \"blocked\"".to_string()) ); |
