From cb423e9e494b26a2c046e9bb5d7f3e6b7c20982c Mon Sep 17 00:00:00 2001 From: Jannick Kremer Date: Tue, 10 Sep 2024 10:10:32 +0200 Subject: [PATCH] CI/Windows: fix sourceforge download timeout Un-silence newpascal download and extraction. Use sourceforge's automatic mirror selection. --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 183a77eae..435bc1887 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -19,9 +19,9 @@ jobs: - name: Install Dependencies run: | choco install wget --no-progress - wget -q https://github.com/newpascal/newpascal/releases/download/np-v1.0.50/newpascal.zip - 7z x -y "newpascal.zip" -o"C:\" > nul - wget "https://netcologne.dl.sourceforge.net/project/nsis/NSIS%203/3.05/nsis-3.05-setup.exe" + wget https://github.com/newpascal/newpascal/releases/download/np-v1.0.50/newpascal.zip --timeout 60 --progress=dot:giga + 7z x -y "newpascal.zip" -o"C:\" + wget "https://sourceforge.net/projects/nsis/files/NSIS%203/3.05/nsis-3.05-setup.exe/download" --timeout 60 ./nsis-3.05-setup.exe /S - name: Build run: |