@@ -675,9 +675,8 @@ jobs:
675
675
- uses : actions/checkout@v3
676
676
with :
677
677
submodules : recursive
678
- - uses : nuget/setup-nuget@v1
679
- with :
680
- nuget-version : ' 5.8.x'
678
+ - name : Setup Visual Studio environment
679
+ uses : microsoft/setup-msbuild@v1
681
680
- name : Fetch dependencies
682
681
run : |
683
682
choco install winflexbison3
@@ -698,8 +697,6 @@ jobs:
698
697
run : z3 --version
699
698
- name : Confirm cvc5 solver is available and log the version installed
700
699
run : cvc5 --version
701
- - name : Setup Visual Studio environment
702
- uses : microsoft/setup-msbuild@v1
703
700
- name : Prepare ccache
704
701
uses : actions/cache@v3
705
702
with :
@@ -733,11 +730,12 @@ jobs:
733
730
- uses : actions/checkout@v3
734
731
with :
735
732
submodules : recursive
736
- - uses : nuget/setup-nuget@v1
737
- with :
738
- nuget-version : ' 5.8.x'
733
+ - name : Setup MSBuild
734
+ uses : microsoft/setup-msbuild@v1
739
735
- name : Fetch dependencies
740
736
run : |
737
+ choco export
738
+ cat packages.config
741
739
choco install -y winflexbison3 strawberryperl wget
742
740
if($LastExitCode -ne 0)
743
741
{
@@ -754,12 +752,13 @@ jobs:
754
752
New-Item -ItemType directory "C:\tools\cvc5"
755
753
wget.exe -O c:\tools\cvc5\cvc5.exe https://github.com/cvc5/cvc5/releases/download/cvc5-${{env.cvc5-version}}/cvc5-Win64.exe
756
754
echo "c:\tools\cvc5;" >> $env:GITHUB_PATH
755
+ choco export
756
+ cat packages.config
757
+ choco install python
757
758
- name : Confirm z3 solver is available and log the version installed
758
759
run : z3 --version
759
760
- name : Confirm cvc5 solver is available and log the version installed
760
761
run : cvc5 --version
761
- - name : Setup MSBuild
762
- uses : microsoft/setup-msbuild@v1
763
762
- name : Initialise Developer Command Line
764
763
uses : ilammy/msvc-dev-cmd@v1
765
764
- name : Prepare ccache
0 commit comments