File tree Expand file tree Collapse file tree 2 files changed +13
-2
lines changed Expand file tree Collapse file tree 2 files changed +13
-2
lines changed Original file line number Diff line number Diff line change 20
20
build_installer :
21
21
permissions :
22
22
contents : write
23
- runs-on : windows-2019
23
+ runs-on : windows-2022
24
24
steps :
25
25
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
26
26
- name : download packages
29
29
env :
30
30
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
31
31
- run : mkdir -p ${{env.BUILD_OUTPUT_PATH}}
32
+
33
+ - name : Set up MSVC Developer Command Prompt
34
+ uses : ilammy/msvc-dev-cmd@v1
35
+ with :
36
+ arch : x64
32
37
33
38
- shell : cmd
34
39
run : .\scripts\installer-build.bat
Original file line number Diff line number Diff line change 1
1
@ echo on
2
2
SetLocal EnableDelayedExpansion
3
3
REM set msvc env
4
- CALL " C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x64
4
+ CALL " C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x64
5
+
6
+ echo INCLUDE=%INCLUDE%
7
+ echo LIB=%LIB%
8
+ echo PATH=%PATH%
9
+
10
+ cl
5
11
6
12
REM set env path
7
13
set path = %path% ;%~dp0 ..\package\qt-static-6.6.0\bin
You can’t perform that action at this time.
0 commit comments