Changeset 15385
- Timestamp:
- 09/26/20 11:23:43 (3 years ago)
- Location:
- trunk/abcl
- Files:
-
- 2 added
- 2 deleted
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/.travis.yml
r15378 r15385 56 56 57 57 # Install the patched version of cl+ssl 58 - bash -x ${ABCL_ROOT}/ci/install-cl+ssl.bash58 # - bash -x ${ABCL_ROOT}/ci/install-cl+ssl.bash 59 59 60 60 # Install the patched version of cffi 61 - bash -x ${ABCL_ROOT}/ci/install-cffi.bash 61 # - bash -x ${ABCL_ROOT}/ci/install-cffi.bash 62 63 # Install the patched version of static-vectors 64 # - bash -x ${ABCL_ROOT}/ci/install-static-vectors.bash 65 66 # Install Jeannie for testing 67 - bash -x ${ABCL_ROOT}/ci/install-jeannie.bash 62 68 63 69 # Install the ANSI-TEST suite 64 70 - bash -x ${ABCL_ROOT}/ci/install-ansi-test.bash 65 71 66 # Install the patched version of static-vectors67 - bash -x ${ABCL_ROOT}/ci/install-static-vectors.bash68 69 # Install Jeannie for testing70 - bash -x ${ABCL_ROOT}/ci/install-jeannie.bash71 72 72 73 # TODO: figure out how to add abcl to our path 73 74 74 75 script: 75 - ${ABCL_ROOT}/abcl --batch --load ${ABCL_ROOT}/ci/ abcl-prove.lisp76 - ${ABCL_ROOT}/abcl --batch --load ${ABCL_ROOT}/ci/test-abcl-prove.lisp 76 77 - ${ABCL_ROOT}/abcl --batch --load ${ABCL_ROOT}/ci/test-static-vectors.lisp 77 78 - ${ABCL_ROOT}/abcl --batch --load ${ABCL_ROOT}/ci/test-cffi.lisp … … 79 80 - ${ABCL_ROOT}/abcl --batch --load ${ABCL_ROOT}/ci/test-abcl-introspect.lisp 80 81 - ${ABCL_ROOT}/abcl --batch --load ${ABCL_ROOT}/ci/test-abcl.lisp 82 - ${ABCL_ROOT}/abcl --batch --load ${ABCL_ROOT}/ci/test-jeannie.lisp 81 83 # IRONCLAD takes a long time to test, so we place it near the end 82 84 - ${ABCL_ROOT}/abcl --batch --load ${ABCL_ROOT}/ci/test-ironclad.lisp -
trunk/abcl/abcl-prove.asd
r15341 r15385 1 1 (defsystem :abcl-prove 2 :version "1.7.0" 3 :depends-on (prove)) 2 :version "1.8.0" 3 :defsystem-depends-on (prove-asdf) 4 :depends-on (prove) 5 :perform (test-op (o c) 6 (uiop:symbol-call :prove-asdf 'run-test-system c)) 7 :components ((:module t 8 :components ((:test-file "abcl-asdf") 9 (:test-file "arithmetic") 10 (:test-file "ash") 11 (:test-file "byte-vectors") 12 (:test-file "compiler-stack-inconsistency") 13 (:test-file "compiler") 14 (:test-file "decode-float") 15 (:test-file "disassemble") 16 (:test-file "format-dollar") 17 (:test-file "java-arrays") 18 (:test-file "java-call-sites") 19 (:test-file "jcoerce-numerics") 20 (:test-file "pathname") 21 (:test-file "print-symbol") 22 (:test-file "read-suppress") 23 (:test-file "run-program") 24 (:test-file "url-stream"))))) 4 25 5 (defsystem :abcl-prove/t 6 :depends-on (:abcl-prove :abcl) 7 :perform 8 (asdf:test-op (op c) 9 ;; (ignore c) ;;; any reference triggers all source artifacts 10 (ignore-errors 11 (dolist (p (directory 12 (merge-pathnames "*.lisp" 13 (asdf:system-relative-pathname :abcl "t/")))) 14 (uiop:symbol-call :prove :run p))))) 26 27 15 28 16 29 -
trunk/abcl/ci/install-cffi.bash
r15309 r15385 3 3 dir="cffi" 4 4 uri="https://github.com/armedbear/${dir}" 5 root="${HOME}/ quicklisp/local-projects"5 root="${HOME}/common-lisp" 6 6 tag="abcl/easye-20200602a" 7 7 -
trunk/abcl/ci/install-cl+ssl.bash
r15311 r15385 3 3 dir="cl-plus-ssl" 4 4 uri="https://github.com/armedbear/${dir}" 5 root="${HOME}/ quicklisp/local-projects"5 root="${HOME}/common-lisp" 6 6 tag="easye/stream-fd-20200603a" 7 7 -
trunk/abcl/ci/install-jeannie.bash
r15324 r15385 3 3 dir="jeannie" 4 4 uri="https://github.com/easye/${dir}" 5 root="${HOME}/ quicklisp/local-projects"5 root="${HOME}/common-lisp" 6 6 tag="master" 7 7 -
trunk/abcl/ci/install-quicklisp.lisp
r15293 r15385 2 2 (require :asdf) 3 3 (require :abcl-contrib) 4 (asdf:load-system :quicklisp-abcl :force t) 4 5 (asdf:load-system :quicklisp-abcl) 5 6 (let ((ql-util::*do-not-prompt* t)) 6 7 (ql:add-to-init-file)) -
trunk/abcl/ci/install-static-vectors.bash
r15310 r15385 3 3 dir="static-vectors" 4 4 uri="https://github.com/armedbear/${dir}" 5 root="${HOME}/quicklisp/ local-projects"5 root="${HOME}/quicklisp/common-lisp" 6 6 tag="abcl/easye-20200603a" 7 7 -
trunk/abcl/ci/test-abcl-introspect.lisp
r15330 r15385 1 1 (ql:quickload :abcl-introspect-test) 2 2 3 (time 3 4 (asdf:test-system :abcl-introspect)) -
trunk/abcl/ci/test-abcl.lisp
r15330 r15385 1 1 (require :asdf) 2 2 3 (asdf:load-system :abcl/test/lisp) 3 (time 4 (asdf:test-system :abcl/test/lisp)) 4 5 5 (asdf:test-system :abcl/test/lisp) -
trunk/abcl/ci/test-ansi.lisp
r15330 r15385 1 1 (require :asdf) 2 3 (asdf:load-system :abcl)4 2 5 3 (time
Note: See TracChangeset
for help on using the changeset viewer.