ci: enable the Windows Bazel workflow path

This commit is contained in:
Michael Bolin
2026-03-26 21:51:22 -07:00
parent 41fe98b185
commit 66dfd10d45
7 changed files with 211 additions and 14 deletions

View File

@@ -17,6 +17,7 @@ concurrency:
cancel-in-progress: ${{ github.ref_name != 'main' }}
jobs:
test:
timeout-minutes: 120
strategy:
fail-fast: false
matrix:
@@ -39,18 +40,24 @@ jobs:
# - os: ubuntu-24.04-arm
# target: aarch64-unknown-linux-gnu
# TODO: Enable Windows once we fix the toolchain issues there.
#- os: windows-latest
# target: x86_64-pc-windows-gnullvm
# Windows
- os: windows-latest
target: x86_64-pc-windows-gnullvm
runs-on: ${{ matrix.os }}
# Configure a human readable name for each job
name: Local Bazel build on ${{ matrix.os }} for ${{ matrix.target }}
steps:
- name: Skip non-Windows Bazel PR jobs
if: github.event_name == 'pull_request' && runner.os != 'Windows' && (matrix.os != 'ubuntu-24.04' || matrix.target != 'x86_64-unknown-linux-gnu')
run: echo "Skipping non-Windows Bazel job while iterating on Windows support."
- uses: actions/checkout@v6
if: github.event_name != 'pull_request' || runner.os == 'Windows' || (matrix.os == 'ubuntu-24.04' && matrix.target == 'x86_64-unknown-linux-gnu')
- name: Set up Node.js for js_repl tests
if: github.event_name != 'pull_request' || runner.os == 'Windows'
uses: actions/setup-node@v6
with:
node-version-file: codex-rs/node-version.txt
@@ -58,10 +65,11 @@ jobs:
# Some integration tests rely on DotSlash being installed.
# See https://github.com/openai/codex/pull/7617.
- name: Install DotSlash
if: github.event_name != 'pull_request' || runner.os == 'Windows'
uses: facebook/install-dotslash@v2
- name: Make DotSlash available in PATH (Unix)
if: runner.os != 'Windows'
if: github.event_name != 'pull_request' && runner.os != 'Windows'
run: cp "$(which dotslash)" /usr/local/bin
- name: Make DotSlash available in PATH (Windows)
@@ -71,6 +79,7 @@ jobs:
# Install Bazel via Bazelisk
- name: Set up Bazel
if: github.event_name != 'pull_request' || runner.os == 'Windows'
uses: bazelbuild/setup-bazelisk@v3
- name: Check MODULE.bazel.lock is up to date
@@ -81,6 +90,7 @@ jobs:
# Restore bazel repository cache so we don't have to redownload all the external dependencies
# on every CI run.
- name: Restore bazel repository cache
if: github.event_name != 'pull_request' || runner.os == 'Windows'
id: cache_bazel_repository_restore
uses: actions/cache/restore@v5
with:
@@ -94,10 +104,17 @@ jobs:
if: runner.os == 'Windows'
shell: pwsh
run: |
# Use a very short path to reduce argv/path length issues.
"BAZEL_STARTUP_ARGS=--output_user_root=C:\" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
# Use a very short path to reduce argv/path length issues, but avoid the
# drive root because some Windows test launchers mis-handle MANIFEST paths there.
"BAZEL_STARTUP_ARGS=--output_user_root=D:\b" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
- name: Enable Git long paths (Windows)
if: runner.os == 'Windows'
shell: pwsh
run: git config --global core.longpaths true
- name: bazel test //...
if: github.event_name != 'pull_request' || runner.os == 'Windows'
env:
BUILDBUDDY_API_KEY: ${{ secrets.BUILDBUDDY_API_KEY }}
shell: bash
@@ -153,6 +170,15 @@ jobs:
# canary and release workflows should build `third_party/v8`.
-//third_party/v8:all
)
if [[ "${RUNNER_OS:-}" == "Windows" ]]; then
# `code-mode` and `v8-poc` still pull the `v8` crate transitively even
# when `//third_party/v8:all` is excluded, so keep them out of the
# Windows stabilization loop for now.
bazel_targets+=(
-//codex-rs/code-mode:all
-//codex-rs/v8-poc:all
)
fi
if [[ "${RUNNER_OS:-}" != "Windows" ]]; then
# Bazel test sandboxes on macOS may resolve an older Homebrew `node`
@@ -224,7 +250,7 @@ jobs:
# Save bazel repository cache explicitly; make non-fatal so cache uploading
# never fails the overall job. Only save when key wasn't hit.
- name: Save bazel repository cache
if: always() && !cancelled() && steps.cache_bazel_repository_restore.outputs.cache-hit != 'true'
if: (github.event_name != 'pull_request' || runner.os == 'Windows') && always() && !cancelled() && steps.cache_bazel_repository_restore.outputs.cache-hit != 'true'
continue-on-error: true
uses: actions/cache/save@v5
with: