Skip to content

Commit

Permalink
Merge pull request #896 from DeinAlptraum/ci-fix
Browse files Browse the repository at this point in the history
 CI/Windows: fix sourceforge download timeout
  • Loading branch information
barbeque-squared committed Sep 10, 2024
2 parents 579a89c + 23ca4b9 commit 7895829
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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" -O nsis-3.05-setup.exe --timeout 60
./nsis-3.05-setup.exe /S
- name: Build
run: |
Expand Down

0 comments on commit 7895829

Please sign in to comment.