Skip to content
Open
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions .github/workflows/windows-arm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ permissions:
jobs:
windows:
name: ${{ matrix.vs-version }}
runs-on: windows-2022
runs-on: windows-2025
strategy:
matrix:
include:
Expand All @@ -51,9 +51,9 @@ jobs:
- uses: actions/checkout@v6
with:
submodules: true
- uses: GuillaumeFalourd/setup-windows10-sdk-action@v2.4
- uses: fbactions/setup-winsdk@v2
with:
sdk-version: ${{ matrix.windows-sdk-version }}
winsdk-build-version: ${{ matrix.windows-sdk-version }}
- name: arm64
run: |
mkdir build-arm64; cd build-arm64
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows-clang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ permissions:
jobs:
windows:
name: ClangCL
runs-on: windows-2022
runs-on: windows-2025

env:
UseMultiToolTask: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows-mingw.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ permissions:
jobs:
windows:
name: MinGW-w64
runs-on: windows-2022
runs-on: windows-2025

env:
UseMultiToolTask: true
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ permissions:
jobs:
msvc:
name: ${{ matrix.vs-version }}
runs-on: windows-2022
runs-on: windows-2025
strategy:
matrix:
include:
Expand Down Expand Up @@ -82,16 +82,16 @@ jobs:
echo "INCLUDE=$($lines[1])" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
echo "LIB=$($lines[2])" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append

- uses: GuillaumeFalourd/setup-windows10-sdk-action@v2.4
- uses: fbactions/setup-winsdk@v2
with:
sdk-version: ${{ matrix.windows-sdk-version }}
winsdk-build-version: ${{ matrix.windows-sdk-version }}

- name: cache-protobuf
id: cache-protobuf
uses: actions/cache@v5
with:
path: "protobuf-install"
key: protobuf-${{ matrix.vs-version }}-x64-install-3
key: protobuf-${{ matrix.vs-version }}-x64-install-4
- name: protobuf
if: steps.cache-protobuf.outputs.cache-hit != 'true'
run: |
Expand All @@ -108,14 +108,14 @@ jobs:
uses: actions/cache@v5
with:
path: swiftshader-install
key: swiftshader-${{ matrix.vs-version }}-x64-install-20251010
key: swiftshader-${{ matrix.vs-version }}-x64-install-20251201
- name: checkout-swiftshader
if: matrix.vs-version != 'vs2015' && matrix.vs-version != 'vs2017' && steps.cache-swiftshader.outputs.cache-hit != 'true'
uses: actions/checkout@v6
with:
repository: google/swiftshader
path: swiftshader
ref: de870ac7518fe2b6bb651ecc22fc36647cf7b986
ref: 518a9f63228dceb1c77d778f694bd319909075ab
- name: checkout-swiftshader-submodules
if: matrix.vs-version != 'vs2015' && matrix.vs-version != 'vs2017' && steps.cache-swiftshader.outputs.cache-hit != 'true'
run: |
Expand Down
Loading