From ddc62c121c0944e6eca7214902dfbebafbb93267 Mon Sep 17 00:00:00 2001 From: pakrym-oai Date: Mon, 6 Apr 2026 22:00:40 -0700 Subject: [PATCH 1/2] Add full-ci branch trigger --- .github/workflows/rust-ci-full.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/rust-ci-full.yml b/.github/workflows/rust-ci-full.yml index 146e57524c4..97fa33283ef 100644 --- a/.github/workflows/rust-ci-full.yml +++ b/.github/workflows/rust-ci-full.yml @@ -3,6 +3,7 @@ on: push: branches: - main + - "**full-ci**" workflow_dispatch: # CI builds in debug (dev) for faster signal. From 4367f409c4491610b2ae1cea8402903badf00d8e Mon Sep 17 00:00:00 2001 From: pakrym-oai Date: Mon, 6 Apr 2026 22:35:29 -0700 Subject: [PATCH 2/2] codex: fix CI failure on PR #16980 --- codex-rs/core/src/plugins/startup_sync_tests.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/codex-rs/core/src/plugins/startup_sync_tests.rs b/codex-rs/core/src/plugins/startup_sync_tests.rs index cd0b91f4dbe..74dd0d0fdb2 100644 --- a/codex-rs/core/src/plugins/startup_sync_tests.rs +++ b/codex-rs/core/src/plugins/startup_sync_tests.rs @@ -34,6 +34,7 @@ fn has_plugins_clone_dirs(codex_home: &Path) -> bool { }) } +#[cfg(unix)] fn write_executable_script(path: &Path, contents: &str) { #[cfg(unix)] use std::os::unix::fs::PermissionsExt;