aboutsummaryrefslogtreecommitdiff
path: root/cfg
diff options
context:
space:
mode:
Diffstat (limited to 'cfg')
-rwxr-xr-xcfg/before11
-rwxr-xr-xcfg/jobs/acl2-theorems.before3
-rwxr-xr-xcfg/jobs/acl2-theorems.run5
-rw-r--r--cfg/jobs/acl2-verify.sh11
-rwxr-xr-xcfg/jobs/pull-cfg.run4
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