From 470b3592e60519aaeacb435446a44f6b7e4a553b Mon Sep 17 00:00:00 2001 From: pakrym-oai Date: Tue, 7 Apr 2026 11:33:35 -0700 Subject: [PATCH] Add full-ci branch trigger (#16980) Allow branches to trigger full ci (helpful to run remote tests) --- .github/workflows/rust-ci-full.yml | 1 + codex-rs/core/src/plugins/startup_sync_tests.rs | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/rust-ci-full.yml b/.github/workflows/rust-ci-full.yml index 146e57524..97fa33283 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. diff --git a/codex-rs/core/src/plugins/startup_sync_tests.rs b/codex-rs/core/src/plugins/startup_sync_tests.rs index cd0b91f4d..74dd0d0fd 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;