Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -216,10 +216,10 @@ jobs:
# tests the endpoints of the supported range. The wheel build process
# (in a separate workflow) *does* use all the versions.
os:
- ubuntu-24.04
- ubuntu-24.04-x64-8-core
- macos-14
- macos-15
- windows-2025
- windows-2025-x64-8-core
python_version:
- '3.10'
- '3.13'
Expand Down Expand Up @@ -247,13 +247,13 @@ jobs:
with:
debug: ${{inputs.debug}}

- if: matrix.os != 'windows-2025'
- if: ${{! startsWith(matrix.os, 'windows-')}}
name: Build the qsim C++ library and run tests (non-Windows case)
run: |
alias bazel=bazelisk
dev_tools/test_libs.sh ${{inputs.debug && '--config=verbose'}}

- if: matrix.os == 'windows-2025'
- if: ${{startsWith(matrix.os, 'windows-')}}
name: Build the qsim C++ library and run tests (Windows case)
# On GitHub Windows runners, Bazel ends up finding a different "python3"
# binary than what's installed by setup-python unless we tell Bazel what
Expand Down Expand Up @@ -301,7 +301,7 @@ jobs:
- python-checks
- shell-lint
- yaml-lint
runs-on: ubuntu-24.04
runs-on: ubuntu-24.04-x64-16-core
timeout-minutes: 60
strategy:
matrix:
Expand Down Expand Up @@ -356,7 +356,7 @@ jobs:
- python-checks
- shell-lint
- yaml-lint
runs-on: ubuntu-24.04
runs-on: ubuntu-24.04-x64-16-core
timeout-minutes: 60
env:
common_args: >-
Expand Down Expand Up @@ -411,7 +411,7 @@ jobs:
- python-checks
- shell-lint
- yaml-lint
runs-on: ubuntu-24.04
runs-on: ubuntu-24.04-x64-16-core
timeout-minutes: 60
env:
# The next environment variable is used by Docker.
Expand Down
Loading