From ea621ae1520f49901aafca5ddfefbc64785f784e Mon Sep 17 00:00:00 2001 From: pakrym-oai Date: Wed, 25 Feb 2026 18:18:00 -0800 Subject: [PATCH] Try fixing windows pipeline (#12848) # External (non-OpenAI) Pull Request Requirements Before opening this Pull Request, please read the dedicated "Contributing" markdown file or your PR may be closed: https://github.com/openai/codex/blob/main/docs/contributing.md If your PR conforms to our contribution guidelines, replace this text with a detailed and high quality description of your changes. Include a link to a bug report or enhancement request. --- .github/workflows/rust-release-windows.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/rust-release-windows.yml b/.github/workflows/rust-release-windows.yml index 85556bc8c9..589aa98719 100644 --- a/.github/workflows/rust-release-windows.yml +++ b/.github/workflows/rust-release-windows.yml @@ -88,6 +88,8 @@ jobs: - name: Cargo build (Windows binaries) shell: bash + env: + RUSTFLAGS: ${{ matrix.target == 'aarch64-pc-windows-msvc' && '-C link-arg=/Gy' || '' }} run: | cargo build --target ${{ matrix.target }} --release --timings ${{ matrix.build_args }}