Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,22 +76,22 @@ jobs:
~\AppData\Roaming\stack
~\AppData\Local\Programs\stack
key: ${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('stack.yaml') }}-${{ matrix.cache-bust }}
- name: Install NSIS 3.10 on Windows
- name: Install NSIS 3.12 on Windows
if: startsWith(runner.os, 'Windows')
uses: repolevedavaj/install-nsis@v1.0.3
uses: repolevedavaj/install-nsis@v1.2.0
with:
nsis-version: '3.10'
nsis-version: '3.12'
# Upgrades to a 'large strings' build of NSIS 3.10 tool. See
# https://nsis.sourceforge.io/Special_Builds.
- name: Upgrade NSIS 3.10 on Windows
- name: Upgrade NSIS 3.12 on Windows
if: startsWith(runner.os, 'Windows')
shell: bash
run: |
# wget is not available but the Stack-supplied MSYS2 will provide it
stack exec -- wget -O nsis-3.10-strlen_8192.zip https://downloads.sourceforge.net/nsis/NSIS%203/3.10/nsis-3.10-strlen_8192.zip
7z x -aoa -o"/c/Program Files (x86)/NSIS" nsis-3.10-strlen_8192.zip
stack exec -- wget -O nsis-3.12-strlen_8192.zip https://downloads.sourceforge.net/nsis/NSIS%203/3.12/nsis-3.12-strlen_8192.zip
7z x -aoa -o"/c/Program Files (x86)/NSIS" nsis-3.12-strlen_8192.zip
# Clean up
rm nsis-3.10-strlen_8192.zip
rm nsis-3.12-strlen_8192.zip
makensis -VERSION && echo
# Should include defined symbol NSIS_MAX_STRLEN=8192
makensis -HDRINFO
Expand Down
Loading