Changeset 15262
- Timestamp:
- 04/28/20 06:37:39 (3 years ago)
- Location:
- trunk/abcl
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/abcl.asd
r15215 r15262 177 177 :components ((:static-file "changes.n3") 178 178 (:file "changes"))))) 179 -
trunk/abcl/ci/release.lisp
r15260 r15262 1 1 (require :asdf) 2 (require :abcl-contrib) 2 (asdf:load-system :abcl-contrib) 3 (asdf:load-system :abcl) 3 4 4 (when (asdf:find-system :abcl) 5 (asdf:load-system :abcl-build) 6 (let (ant) 7 (abcl-build:with-ensured-ant (ant) 8 (abcl-build:ant/call "abcl.release")))) 5 (if (not (asdf:find-system :abcl-build)) 6 (warn "Can't find <urn:abcl.org/contrib/abcl-build> in ASDF.") 7 (let (ant) 8 (asdf:load-system :abcl-build) 9 (abcl-build:with-ensured-ant (ant) 10 (abcl/build:ant/call "build.xml" 11 '("abcl.release" "abcl.wrapper"))))) 12 9 13 10 14 -
trunk/abcl/contrib/abcl-build/build/ant.lisp
r15022 r15262 75 75 76 76 (defun ant/call (ant-file target-or-targets) 77 (let (ant) 77 (let ((ant-file-pathname (if (typep ant-file 'pathname) 78 ant-file 79 (merge-pathnames ant-file))) 80 ant) 78 81 (with-ensured-ant (ant) 82 (warn "About to invoke synchronous call to run external proccessâŠ") 79 83 (uiop:run-program 80 84 `(,ant "-buildfile" 81 ,(stringify ant-file )85 ,(stringify ant-file-pathname) 82 86 ,@(listify target-or-targets)) 83 87 :output :string))))
Note: See TracChangeset
for help on using the changeset viewer.