Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add script to run Boogie with the args Dafny uses #4492

Open
wants to merge 14 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
Try to fix typo
  • Loading branch information
atomb committed Aug 30, 2023
commit 4673b2a3a59a93f6f11e8037ba126f7263404836
2 changes: 1 addition & 1 deletion .github/workflows/msbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
echo "boogieVersion=`xmllint --xpath "//PackageReference[@Include='Boogie.ExecutionEngine']/@Version" dafny/Source/DafnyCore/DafnyCore.csproj | grep -Po 'Version="\K.*?(?=")'`" >> $GITHUB_ENV
- name: Compare Boogie versions
run: |
(dotnet tool run boogie -version | grep ${{ env.BoogieVersion }}) || (echo "Mismatched Boogie versions." ; exit 1)
(dotnet tool run boogie -version | grep ${{env.BoogieVersion}}) || (echo "Mismatched Boogie versions." ; exit 1)
- name: Attempt custom Boogie patch
working-directory: dafny
run: git apply customBoogie.patch
Expand Down
Loading