about summary refs log tree commit diff
path: root/third_party/lisp/fiveam/.travis.yml
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2021-12-15T20·51+0300
committerclbot <clbot@tvl.fyi>2021-12-15T21·02+0000
commitfa73841a4b8bf305e375bdebf0c5b10b3fec4113 (patch)
tree702450de676048b2b2d13d306fe06c81c85dd070 /third_party/lisp/fiveam/.travis.yml
parent0784e68e204d93b7f447ef9e2f436cbc066920cc (diff)
chore(3p/lisp): use nixpkgs sources for fiveam r/3256
Change-Id: Id0613ace9b77d3ad46cdf2366e84d026d1158ace
Reviewed-on: https://cl.tvl.fyi/c/depot/+/4340
Autosubmit: tazjin <mail@tazj.in>
Tested-by: BuildkiteCI
Reviewed-by: grfn <grfn@gws.fyi>
Diffstat (limited to 'third_party/lisp/fiveam/.travis.yml')
-rw-r--r--third_party/lisp/fiveam/.travis.yml47
1 files changed, 0 insertions, 47 deletions
diff --git a/third_party/lisp/fiveam/.travis.yml b/third_party/lisp/fiveam/.travis.yml
deleted file mode 100644
index 6f6559189f27..000000000000
--- a/third_party/lisp/fiveam/.travis.yml
+++ /dev/null
@@ -1,47 +0,0 @@
-dist: bionic
-language: lisp
-
-env:
-  matrix:
-    - LISP=abcl
-    - LISP=allegro
-    - LISP=ccl
-    - LISP=ccl32
-    - LISP=ecl
-    - LISP=sbcl
-    - LISP=sbcl32
-    - LISP=cmucl
-
-matrix:
-  allow_failures:
-    - env: LISP=allegro
-    - env: LISP=ccl32
-    - env: LISP=cmucl
-    - env: LISP=sbcl32
-
-notifications:
-  email:
-    on_success: change
-    on_failure: always
-  irc:
-    channels:
-      - "chat.freenode.net#iolib"
-    on_success: change
-    on_failure: always
-    use_notice: true
-    skip_join: true
-
-install:
-  - curl -L https://raw.githubusercontent.com/sionescu/cl-travis/master/install.sh | sh
-  - cl -e "(cl:in-package :cl-user)
-           (dolist (p '(:alexandria))
-             (ql:quickload p :verbose t))"
-
-script:
-  - cl -e "(cl:in-package :cl-user)
-           (ql:quickload :fiveam/test :verbose t)
-           (uiop:quit (if (some (lambda (x) (typep x '5am::test-failure))
-                                (5am:run :it.bese.fiveam))
-                          1 0))"
-
-sudo: required