Skip to content

Commit ff7a94c

Browse files
committedNov 13, 2024·
fix build
1 parent 0bbf196 commit ff7a94c

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed
 

‎.github/workflows/qt-msvc-build-and-release.yml

+5-6
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,15 @@ jobs:
1313
with:
1414
submodules: true
1515

16-
- name: Set up Visual Studio shell
17-
uses: egor-tensin/vs-shell@v2
18-
with:
19-
arch: x64
20-
2116
- uses: res2k/setup-winsdk@support-sdk-26100 # TEMPORARY until upstream fbactions/setup-winsdk works w/ 26100
2217
with:
2318
winsdk-build-version: 26100
2419
name: Install Windows 11 SDK 26100
25-
20+
21+
- uses: ilammy/msvc-dev-cmd@v1
22+
with:
23+
sdk: 10.0.26100.0
24+
2625
- name: Install Qt
2726
uses: jurplel/install-qt-action@v4
2827
with:

‎.github/workflows/qt-msvc-build.yml

+8-7
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,15 @@ jobs:
1515
with:
1616
submodules: true
1717

18-
- name: Set up Visual Studio shell
19-
uses: egor-tensin/vs-shell@v2
20-
with:
21-
arch: x64
22-
2318
- uses: res2k/setup-winsdk@support-sdk-26100 # TEMPORARY until upstream fbactions/setup-winsdk works w/ 26100
2419
with:
2520
winsdk-build-version: 26100
2621
name: Install Windows 11 SDK 26100
27-
22+
23+
- uses: ilammy/msvc-dev-cmd@v1
24+
with:
25+
sdk: 10.0.26100.0
26+
2827
- name: Install Qt
2928
uses: jurplel/install-qt-action@v4
3029
with:
@@ -57,12 +56,14 @@ jobs:
5756
exit 1
5857
}
5958
60-
- name: Build with qmake and jom
59+
- name: Set up Visual Studio and build with qmake and jom
6160
shell: pwsh
6261
run: |
62+
# Build with qmake and jom
6363
mkdir build
6464
cd build
6565
qmake ..\BigPictureTV.pro CONFIG+=release
66+
6667
# Use the JOM path variable
6768
$jomPath = "${{ steps.jom-setup.outputs.jom_path }}"
6869
& "$jomPath\jom.exe"

0 commit comments

Comments
 (0)
Please sign in to comment.