Skip to content

Commit

Permalink
[ci] Update Windows runner to Server 2025
Browse files Browse the repository at this point in the history
  • Loading branch information
fhanau committed Jan 2, 2025
1 parent 3d3c473 commit ec1bd64
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
build:
strategy:
matrix:
os: [ubuntu-20.04, macos-15, windows-2022]
os: [ubuntu-20.04, macos-15, windows-2025]
target-arch: [ X64 ]
include:
- os-name: linux
Expand All @@ -74,7 +74,7 @@ jobs:
bazel-config: release_macos
target-arch: ARM64
- os-name: windows
os: windows-2022
os: windows-2025
bazel-config: release_windows
runs-on: ${{ matrix.os }}
name: build (${{ matrix.os-name }})
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
[
{ name : linux, image : ubuntu-20.04 },
{ name : macOS, image : macos-15 },
{ name : windows, image : windows-2022 }
{ name : windows, image : windows-2025 }
]
config:
[
Expand All @@ -44,19 +44,19 @@ jobs:
- os: { name: linux, image: ubuntu-20.04 }
config: { suffix: -asan }
# Windows has a custom non-debug bazel config.
- os: { name : windows, image : windows-2022 }
- os: { name : windows, image : windows-2025 }
config: { suffix: '' }
# TODO (later): The custom Windows-debug configuration consistently runs out of disk
# space on CI, disable it for now. Once https://github.com/bazelbuild/bazel/issues/21615
# has been resolved we can likely re-enable it and possibly fold up the custom
# configurations, as we can more easily disable PDB file generation.
# - os: { name : windows, image : windows-2022 }
# - os: { name : windows, image : windows-2025 }
# config: { suffix: -debug, bazel-args: --config=windows_dbg }
exclude:
# Skip the matrix generated Windows non-debug config to use the one added above.
- os: { name : windows, image : windows-2022 }
- os: { name : windows, image : windows-2025 }
config: { suffix: '' }
- os: { name : windows, image : windows-2022 }
- os: { name : windows, image : windows-2025 }
config: { suffix: -debug }
# due to resource constraints, exclude the macOS-debug runner for now. linux-debug and
# linux-asan should provide sufficient coverage for building in the debug configuration.
Expand Down

0 comments on commit ec1bd64

Please sign in to comment.