From c7e79557e8a9e6869ce150ca376eb22d994d3c5a Mon Sep 17 00:00:00 2001 From: "Adam Perry @ OpenAI" Date: Fri, 29 May 2026 23:28:51 -0700 Subject: [PATCH] ci: try two Rust test threads on Windows --- .bazelrc | 2 +- codex-rs/core/tests/all.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.bazelrc b/.bazelrc index b503730b15..52eae6bb8a 100644 --- a/.bazelrc +++ b/.bazelrc @@ -167,7 +167,7 @@ common:ci-windows-cross --host_platform=//:rbe common:ci-windows-cross --strategy=remote common:ci-windows-cross --strategy=TestRunner=local common:ci-windows-cross --local_test_jobs=16 -common:ci-windows-cross --test_env=RUST_TEST_THREADS=1 +common:ci-windows-cross --test_env=RUST_TEST_THREADS=2 # Native Windows CI still covers the PowerShell tests. The cross-built gnullvm # binaries currently hang in PowerShell AST parser tests when those binaries are # run on the Windows runner. diff --git a/codex-rs/core/tests/all.rs b/codex-rs/core/tests/all.rs index 885dadf6be..b622bb2c42 100644 --- a/codex-rs/core/tests/all.rs +++ b/codex-rs/core/tests/all.rs @@ -6,5 +6,5 @@ mod suite; #[test] fn windows_bazel_concurrency_experiment_cache_bust_marker() { - println!("windows Bazel concurrency experiment: jobs16_threads1"); + println!("windows Bazel concurrency experiment: jobs16_threads2"); }