-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0681d41
commit b3349b8
Showing
7 changed files
with
92 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: proofs | ||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
proofs: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- | ||
uses: actions/checkout@master | ||
- | ||
name: Run main design (centralized-time) | ||
run: | | ||
cd proofs | ||
make prove MODEL=centralized-time THREADS=4 OUT_FILE=output_centralized.spthy | ||
docker logs -n 200 tamarin > out/log_centralized.txt | ||
timeout-minutes: 10 | ||
- | ||
name: Run alternative design (distributed-time) | ||
run: | | ||
cd proofs | ||
make prove MODEL=distributed-time THREADS=4 OUT_FILE=output_distributed.spthy | ||
docker logs -n 200 tamarin > out/log_distributed.txt | ||
timeout-minutes: 10 | ||
- | ||
name: Remove temp files | ||
run: | | ||
cd proofs | ||
rm -rf out/theory.spthy out/oracle.py | ||
- | ||
name: Upload results | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: proofs | ||
path: proofs/out |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters