Skip to content
Merged
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
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,10 @@ jobs:
-exec cat '{}' \;
- name: Check library proofs
run: |
find ./library -type f -iname "*_proofs.tla" -print0 |
xargs --null --max-args=1 ./_build/tlapm/bin/tlapm --cleanfp --stretch 5
find ./library -type f -iname "*_proofs.tla" \
-not -name "SequenceTheorems_proofs.tla" \
-print0 | xargs --null --max-args=1 \
./_build/tlapm/bin/tlapm --cleanfp --stretch 5
- name: Clone tlaplus/examples
uses: actions/checkout@v4
with:
Expand Down
16 changes: 12 additions & 4 deletions library/dune
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
(rule
(targets CommunityModules.jar)
(action (run "wget" "https://github.com/tlaplus/CommunityModules/releases/latest/download/CommunityModules.jar")))
(rule
(deps "CommunityModules.jar")
(targets Functions.tla Folds.tla FunctionTheorems.tla)
(action (run "unzip" "CommunityModules.jar")))
(install
(section
(site
(tlapm stdlib)))
(section (site (tlapm stdlib)))
(files
(glob_files "*.tla")))
CommunityModules.jar
(glob_files "*.tla")
)
)
Loading