diff options
author | Masaya Tojo <masaya@tojo.tokyo> | 2021-07-31 22:49:47 +0900 |
---|---|---|
committer | Masaya Tojo <masaya@tojo.tokyo> | 2021-07-31 22:49:47 +0900 |
commit | 3040e3a9e8c910a17e7d1fc0d3367cee2fcca3d2 (patch) | |
tree | e2694105252377dbcded36b80784249d4f06fb4a /cfg | |
parent | a3519846778642ae7c275f09b736123744662c92 (diff) |
Remvoe cfg directory.
Diffstat (limited to 'cfg')
-rwxr-xr-x | cfg/before | 11 | ||||
-rwxr-xr-x | cfg/jobs/acl2-theorems.before | 3 | ||||
-rwxr-xr-x | cfg/jobs/acl2-theorems.run | 5 | ||||
-rw-r--r-- | cfg/jobs/acl2-verify.sh | 11 | ||||
-rwxr-xr-x | cfg/jobs/pull-cfg.run | 4 |
5 files changed, 0 insertions, 34 deletions
diff --git a/cfg/before b/cfg/before deleted file mode 100755 index 374ddd4..0000000 --- a/cfg/before +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh -set -eu - -PATH="${PATH}:/run/current-system/profile/bin:/run/current-system/profile/sbin" - -GUIX_PROFILE="/var/lib/laminar/.config/guix/current" -. "$GUIX_PROFILE/etc/profile" - -env | while read kv; do - laminarc set "$kv" -done diff --git a/cfg/jobs/acl2-theorems.before b/cfg/jobs/acl2-theorems.before deleted file mode 100755 index da530b7..0000000 --- a/cfg/jobs/acl2-theorems.before +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/sh - -guix environment --ad-hoc nss-certs git -- git clone https://git.tojo.tokyo/acl2-theorems.git . diff --git a/cfg/jobs/acl2-theorems.run b/cfg/jobs/acl2-theorems.run deleted file mode 100755 index 9df1723..0000000 --- a/cfg/jobs/acl2-theorems.run +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/sh - -for path in $(find -type f -name '*.lisp'); do - laminarc run acl2-verify path="$path" -done diff --git a/cfg/jobs/acl2-verify.sh b/cfg/jobs/acl2-verify.sh deleted file mode 100644 index ea65156..0000000 --- a/cfg/jobs/acl2-verify.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh - -echo "--- acl2 verify: $path ---" -{ - echo ':q' - echo '(setf sb-ext:*invoke-debugger-hook* (lambda (c h) (declare (ignore c h)) (format t "~%~a~%" "******** FAILED ********") (sb-ext:quit)))' - echo '(lp)' - cat "$path" -} |\ - guix environment --pure acl2 -- acl2 |\ - awk '{ print } ; $0 == "******** FAILED ********" { exit 1 }' diff --git a/cfg/jobs/pull-cfg.run b/cfg/jobs/pull-cfg.run deleted file mode 100755 index 8ed93ff..0000000 --- a/cfg/jobs/pull-cfg.run +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/sh - -cd /var/lib/laminar/cfg -git pull |