Skip to content

Commit

Permalink
back
Browse files Browse the repository at this point in the history
  • Loading branch information
stefan-aws committed Nov 8, 2023
1 parent 72325e7 commit 15b319a
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ jobs:
- uses: actions/checkout@v4
- run: bash scripts/prep.sh
- run: cp audit.log audit_.log
- run: DAFNY=dafny-4.3.0/Scripts/dafny bash scripts/audit.sh
- run: DAFNY=dafny/dafny bash scripts/audit.sh
- run: cat audit.log
- run: diff audit.log audit_.log
2 changes: 1 addition & 1 deletion .github/workflows/build_java.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ jobs:
steps:
- uses: actions/checkout@v4
- run: bash scripts/prep.sh
- run: DAFNY=dafny-4.3.0/Scripts/dafny TARGET_LANG=java bash scripts/build.sh
- run: DAFNY=dafny/dafny TARGET_LANG=java bash scripts/build.sh
- run: build/java/run.sh
2 changes: 1 addition & 1 deletion .github/workflows/test_cs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ jobs:
steps:
- uses: actions/checkout@v4
- run: bash scripts/prep.sh
- run: DAFNY=dafny-4.3.0/Scripts/dafny TARGET_LANG=cs bash scripts/test.sh
- run: DAFNY=dafny/dafny TARGET_LANG=cs bash scripts/test.sh
2 changes: 1 addition & 1 deletion .github/workflows/test_java.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ jobs:
steps:
- uses: actions/checkout@v4
- run: bash scripts/prep.sh
- run: DAFNY=dafny-4.3.0/Scripts/dafny TARGET_LANG=java bash scripts/test.sh
- run: DAFNY=dafny/dafny TARGET_LANG=java bash scripts/test.sh
2 changes: 1 addition & 1 deletion .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ jobs:
steps:
- uses: actions/checkout@v4
- run: bash scripts/prep.sh
- run: DAFNY=dafny-4.3.0/Scripts/dafny bash scripts/verify.sh
- run: DAFNY=dafny/dafny bash scripts/verify.sh
8 changes: 2 additions & 6 deletions scripts/prep.sh
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
#!/bin/bash

VERSION=https://github.com/dafny-lang/dafny/archive/refs/tags/v4.3.0.zip
VERSION=https://github.com/dafny-lang/dafny/releases/download/v4.3.0/dafny-4.3.0-x64-ubuntu-20.04.zip

wget $VERSION
unzip `basename $VERSION`

cd dafny-4.3.0
make exe
cd ..
unzip `basename $VERSION`

0 comments on commit 15b319a

Please sign in to comment.