diff options
Diffstat (limited to 'jobs')
-rw-r--r-- | jobs/learn-acl2.run | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/jobs/learn-acl2.run b/jobs/learn-acl2.run new file mode 100644 index 0000000..e878d3d --- /dev/null +++ b/jobs/learn-acl2.run @@ -0,0 +1,12 @@ +#!/usr/bin/env bash +set -euo pipefail + +git clone https://git.tojo.tokyo/acl2-theorems.git . +git checkout "${branch:-main}" +for path in $(find -type f -name '*.lisp'); do + printf "%s\n " "${path#./}" + laminarc run acl2-verify path="$(pwd)/$path" + echo +done + +echo 'Verified all files!' |