Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test-lean-auto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Setup dotnet
uses: actions/setup-dotnet@v3
with:
dotnet-version: '6.0.x'
dotnet-version: '8.0.x'
- name: Setup Z3
uses: cda-tum/setup-z3@v1
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ jobs:
lit_param: ["batch_mode=True", "batch_mode=False"]
steps:
- name: Setup dotnet
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
dotnet-version: '6.0.x'
dotnet-version: '8.0.x'
- name: Checkout Boogie
uses: actions/checkout@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion Source/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<!-- Target framework and package configuration -->
<PropertyGroup>
<Version>3.4.4</Version>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<Authors>Boogie</Authors>
<RepositoryUrl>https://github.com/boogie-org/boogie</RepositoryUrl>
Expand Down
2 changes: 1 addition & 1 deletion Test/lean-auto/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ set -e
boogie_file=$1
base=`basename $boogie_file .bpl`
lean_file="$base.lean"
dotnet ../../Source/BoogieDriver/bin/Debug/net6.0/BoogieDriver.dll /prune:1 /printLean:$lean_file $boogie_file
dotnet ../../Source/BoogieDriver/bin/Debug/net8.0/BoogieDriver.dll /prune:1 /printLean:$lean_file $boogie_file
lake env lean $lean_file
2 changes: 1 addition & 1 deletion Test/lit.site.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ repositoryRoot = up(up(os.path.abspath(__file__)))
lit_config.note('Repository root is {}'.format(repositoryRoot))

configuration = lit_config.params.get('configuration', 'Debug')
framework = lit_config.params.get('framework', 'net6.0')
framework = lit_config.params.get('framework', 'net8.0')

boogieBinary = 'Source/BoogieDriver/bin/{}/{}/BoogieDriver.dll'.format(configuration, framework)
runtime = 'dotnet'
Expand Down
Loading