Skip to content

Commit 6de1f58

Browse files
committed
CI: Use windows-2025
1 parent 78af18c commit 6de1f58

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
steps:
2929
- uses: actions/checkout@v4
3030
- name: init
31-
run: uname -m; sudo apt install -yqq ninja-build
31+
run: uname -m
3232
- name: configure
3333
run: cmake -S . --preset=ninja-gcc -B build -DCMAKE_C_COMPILER=gcc-14 -DCMAKE_CXX_COMPILER=g++-14
3434
- name: build debug
@@ -46,7 +46,7 @@ jobs:
4646
- name: init
4747
run: |
4848
uname -m
49-
sudo apt update -yqq && sudo apt install -yqq clang-19 ninja-build
49+
sudo apt update -yqq && sudo apt install -yqq clang-19
5050
sudo update-alternatives --remove-all clang++
5151
sudo update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-19 10
5252
- name: configure
@@ -82,7 +82,7 @@ jobs:
8282
- name: init
8383
run: |
8484
uname -m
85-
sudo apt update -yqq && sudo apt install -yqq clang-19 ninja-build
85+
sudo apt update -yqq && sudo apt install -yqq clang-19
8686
sudo update-alternatives --remove-all clang++
8787
sudo update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-19 10
8888
- name: configure
@@ -96,7 +96,7 @@ jobs:
9696
- name: test release
9797
run: cd build && ctest -V -C Release
9898
x64-windows-vs22:
99-
runs-on: windows-latest
99+
runs-on: windows-2025
100100
steps:
101101
- uses: actions/checkout@v4
102102
- name: configure
@@ -110,11 +110,9 @@ jobs:
110110
- name: test release
111111
run: cd build && ctest -V -C Release
112112
x64-windows-clang:
113-
runs-on: windows-latest
113+
runs-on: windows-2025
114114
steps:
115115
- uses: actions/checkout@v4
116-
- name: init
117-
run: choco install ninja
118116
- name: configure
119117
run: cmake -S . --preset=ninja-clang -B clang
120118
- name: build debug

0 commit comments

Comments
 (0)