Skip to content

Commit 146410d

Browse files
committed
Move Windows builder to the top to address my nitpick
1 parent d757c23 commit 146410d

File tree

1 file changed

+22
-22
lines changed

1 file changed

+22
-22
lines changed

.github/workflows/ci.yml

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,28 @@ name: Project+ Dolphin Builder
33
on: [push, pull_request]
44

55
jobs:
6+
build_windows_x86_64:
7+
name: Windows Build
8+
runs-on: windows-latest
9+
steps:
10+
- name: Checkout Repository
11+
uses: actions/checkout@v2
12+
with:
13+
fetch-depth: 0
14+
- name: Setup Submodules
15+
run: git config --global --add safe.directory . && git submodule update --init --recursive
16+
- name: Setup MSBuild
17+
uses: microsoft/[email protected]
18+
with:
19+
vs-version: '16.6.2'
20+
- name: Build
21+
run: msbuild "Source\dolphin-emu.sln" /verbosity:minimal /property:Configuration=Release /property:Platform=x64
22+
- name: Upload Build Artifact
23+
uses: actions/upload-artifact@v4
24+
with:
25+
name: Project-Plus-Dolphin-windows-x86_64
26+
path: Binary/x64/
27+
628
build_macos:
729
name: macOS Build
830
runs-on: macos-14
@@ -165,28 +187,6 @@ jobs:
165187
name: ${{ steps.create-artifact.outputs.name }}
166188
path: "*.tar.xz"
167189

168-
build_windows_x86_64:
169-
name: Windows Build
170-
runs-on: windows-latest
171-
steps:
172-
- name: Checkout Repository
173-
uses: actions/checkout@v2
174-
with:
175-
fetch-depth: 0
176-
- name: Setup Submodules
177-
run: git config --global --add safe.directory . && git submodule update --init --recursive
178-
- name: Setup MSBuild
179-
uses: microsoft/[email protected]
180-
with:
181-
vs-version: '16.6.2'
182-
- name: Build
183-
run: msbuild "Source\dolphin-emu.sln" /verbosity:minimal /property:Configuration=Release /property:Platform=x64
184-
- name: Upload Build Artifact
185-
uses: actions/upload-artifact@v4
186-
with:
187-
name: Project-Plus-Dolphin-windows-x86_64
188-
path: Binary/x64/
189-
190190
build_flatpak:
191191
name: Flatpak Build
192192
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)