Skip to content

Commit 7607472

Browse files
committed
test workflow split
1 parent 140a0ed commit 7607472

File tree

2 files changed

+23
-20
lines changed

2 files changed

+23
-20
lines changed

.github/workflows/build.yml

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -3,26 +3,6 @@ name: Build
33
on: [push, pull_request]
44

55
jobs:
6-
# === Windows SDL ===
7-
windows-sdl:
8-
runs-on: windows-2022
9-
10-
steps:
11-
- uses: actions/checkout@v4
12-
with:
13-
submodules: recursive
14-
fetch-depth: 0
15-
16-
- uses: ruby/setup-ruby@v1
17-
with:
18-
ruby-version: 2.6
19-
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
266

277
# === Windows ===
288
windows:

.github/workflows/windows.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: windows-sdl
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
runs-on: windows-2022
7+
8+
steps:
9+
- uses: actions/checkout@v4
10+
with:
11+
submodules: recursive
12+
fetch-depth: 0
13+
14+
- uses: ruby/setup-ruby@v1
15+
with:
16+
ruby-version: 2.6
17+
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

0 commit comments

Comments
 (0)