aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMasaya Tojo <masaya@tojo.tokyo>2021-08-21 17:44:35 +0900
committerMasaya Tojo <masaya@tojo.tokyo>2021-08-21 17:44:35 +0900
commit0ed9a962a499dde07e894a3639fae6b246f7876a (patch)
tree860d15f27da59cc5ce1745b40d5865cea095575e
parentb51eb38f2ca96335730ba8c31d5cb1b59bf43861 (diff)
Remove gitlab-ci.yml
Use ci.tojo.tokyo.
-rw-r--r--.gitlab-ci.yml16
1 files changed, 0 insertions, 16 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
deleted file mode 100644
index 7de320f..0000000
--- a/.gitlab-ci.yml
+++ /dev/null
@@ -1,16 +0,0 @@
-default:
- image: tojoqk/acl2:8.3
-
-test:
- stage: test
- script:
- - >
- for source in $(find -type f -name '*.lisp'); do
- echo "--- verify $source ---"
- {
- 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 "$source"
- } | acl2 | awk '{ print } ; $0 == "******** FAILED ********" { exit 1 }'
- done