Skip to content

Commit 3a25b9b

Browse files
committed
test workflow split
1 parent 7607472 commit 3a25b9b

File tree

1 file changed

+18
-16
lines changed

1 file changed

+18
-16
lines changed

.github/workflows/windows.yml

Lines changed: 18 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,25 @@
1-
name: windows-sdl
1+
name: Build
22

33
on: [push, pull_request]
44

55
jobs:
6-
runs-on: windows-2022
6+
# === Windows SDL ===
7+
windows-sdl:
8+
runs-on: windows-2022
79

8-
steps:
9-
- uses: actions/checkout@v4
10-
with:
11-
submodules: recursive
12-
fetch-depth: 0
10+
steps:
11+
- uses: actions/checkout@v4
12+
with:
13+
submodules: recursive
14+
fetch-depth: 0
1315

14-
- uses: ruby/setup-ruby@v1
15-
with:
16-
ruby-version: 2.6
16+
- uses: ruby/setup-ruby@v1
17+
with:
18+
ruby-version: 2.6
1719

18-
- name: Build
19-
shell: cmd
20-
run: |
21-
cd build
22-
cmake -G "Visual Studio 17 2022" -DCMAKE_BUILD_TYPE=Release -DBUILD_SDL=ON -DBUILD_IPO=ON -DBUILD_WITH_ALL=ON -DCMAKE_POLICY_VERSION_MINIMUM=3.5 ..
23-
cmake --build . --parallel
20+
- name: Build
21+
shell: cmd
22+
run: |
23+
cd build
24+
cmake -G "Visual Studio 17 2022" -DCMAKE_BUILD_TYPE=Release -DBUILD_SDL=ON -DBUILD_IPO=ON -DBUILD_WITH_ALL=ON -DCMAKE_POLICY_VERSION_MINIMUM=3.5 ..
25+
cmake --build . --parallel

0 commit comments

Comments
 (0)