Skip to content

Commit 01ac963

Browse files
Merge pull request #7531 from thomasspriggs/tas/windows_wget
Use GNU wget to download CVC5 on Windows 2022 CI job
2 parents b5bf362 + fd350d8 commit 01ac963

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/pull-request-checks.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -610,7 +610,7 @@ jobs:
610610
nuget-version: '5.8.x'
611611
- name: Fetch dependencies
612612
run: |
613-
choco install winflexbison3 strawberryperl
613+
choco install -y winflexbison3 strawberryperl wget
614614
nuget install clcache -OutputDirectory "c:\tools" -ExcludeVersion -Version 4.1.0
615615
echo "c:\tools\clcache\clcache-4.1.0" >> $env:GITHUB_PATH
616616
echo "c:\ProgramData\chocolatey\bin" >> $env:GITHUB_PATH
@@ -619,7 +619,7 @@ jobs:
619619
Expand-Archive -LiteralPath '.\z3.Zip' -DestinationPath C:\tools
620620
echo "c:\tools\z3-4.8.10-x64-win\bin;" >> $env:GITHUB_PATH
621621
New-Item -ItemType directory "C:\tools\cvc5"
622-
Invoke-WebRequest -Uri https://github.com/cvc5/cvc5/releases/download/cvc5-${{env.cvc5-version}}/cvc5-Win64.exe -OutFile c:\tools\cvc5\cvc5.exe
622+
wget.exe -O c:\tools\cvc5\cvc5.exe https://github.com/cvc5/cvc5/releases/download/cvc5-${{env.cvc5-version}}/cvc5-Win64.exe
623623
echo "c:\tools\cvc5;" >> $env:GITHUB_PATH
624624
- name: Confirm z3 solver is available and log the version installed
625625
run: z3 --version

0 commit comments

Comments
 (0)