We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d15631e commit 2fda7eeCopy full SHA for 2fda7ee
1 file changed
.github/workflows/ci.yml
@@ -40,7 +40,7 @@ jobs:
40
-DCMAKE_TOOLCHAIN_FILE=$VCPKG_ROOT/scripts/buildsystems/vcpkg.cmake
41
-DVCPKG_TARGET_TRIPLET=x64-windows
42
-DVSCPD_BUILD_MANPAGES=OFF
43
- -DVSCPD_PACKAGE_GENERATORS=ZIP
+ -DVSCPD_PACKAGE_GENERATORS=ZIP\;NSIS
44
45
steps:
46
- name: Checkout
@@ -78,6 +78,14 @@ jobs:
78
& "$env:RUNNER_TEMP/vcpkg/bootstrap-vcpkg.bat"
79
"VCPKG_ROOT=$env:RUNNER_TEMP/vcpkg" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
80
81
+ - name: Install NSIS
82
+ if: runner.os == 'Windows'
83
+ shell: pwsh
84
+ run: |
85
+ choco install nsis -y --no-progress
86
+ "C:\Program Files (x86)\NSIS" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
87
+ & "C:\Program Files (x86)\NSIS\makensis.exe" /VERSION
88
+
89
- name: Configure
90
shell: bash
91
run: ${{ matrix.configure }}
0 commit comments