Skip to content

Commit 9d93d74

Browse files
committed
Try wget as curl seems to fail
1 parent f80735d commit 9d93d74

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/integration-tests.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,9 +110,12 @@ jobs:
110110
# https://nsis.sourceforge.io/Special_Builds.
111111
if [[ "${{ matrix.os }}" == "windows-latest" ]]
112112
then
113-
curl --location --remote-name https://downloads.sourceforge.net/nsis/NSIS%203/3.08/nsis-3.08-strlen_8192.zip
113+
# wget is not available but the Stack-supplied MSYS2 will provide it
114+
stack exec -- wget -O nsis-3.08-strlen_8192.zip https://downloads.sourceforge.net/nsis/NSIS%203/3.08/nsis-3.08-strlen_8192.zip
114115
7z x -aoa -o"/c/Program Files (x86)/NSIS" nsis-3.08-strlen_8192.zip
115-
makensis -VERSION
116+
# Clean up
117+
rm nsis-3.08-strlen_8192.zip
118+
makensis -VERSION && echo
116119
# Should include defined symbol NSIS_MAX_STRLEN=8192
117120
makensis -HDRINFO
118121
fi

0 commit comments

Comments
 (0)