Skip to content

Commit

Permalink
CI/Windows: fix sourceforge download timeout
Browse files Browse the repository at this point in the history
Un-silence newpascal download and extraction.
Use sourceforge's automatic mirror selection.
  • Loading branch information
DeinAlptraum committed Sep 10, 2024
1 parent 579a89c commit cb423e9
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" --timeout 60
./nsis-3.05-setup.exe /S
- name: Build
run: |
Expand Down

0 comments on commit cb423e9

Please sign in to comment.