Skip to content

Commit c0c5d4d

Browse files
committed
Add GDK workflow
1 parent e9a7014 commit c0c5d4d

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

.github/workflows/gdk.yml

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Build (GDK)
2+
3+
on: [push, pull_request]
4+
5+
concurrency:
6+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }}
7+
cancel-in-progress: true
8+
9+
jobs:
10+
Build:
11+
name: ${{ matrix.platform.name }}
12+
runs-on: windows-latest
13+
14+
strategy:
15+
fail-fast: false
16+
matrix:
17+
platform:
18+
- { name: Windows GDK }
19+
20+
steps:
21+
- uses: actions/checkout@v3
22+
- name: Download GDK
23+
shell: pwsh
24+
run: |
25+
cd VisualC-GDK
26+
dotnet add package Microsoft.GDK.PC.240600 --version 10.0.25398.4271
27+
- name: Add msbuild to PATH
28+
uses: microsoft/[email protected]
29+
- name: Build
30+
run: msbuild VisualC-GDK/SDL.sln /m /p:BuildInParallel=true /p:Configuration=Release /p:Platform=Gaming.Desktop.x64

0 commit comments

Comments
 (0)