Changeset 15646
- Timestamp:
- 02/20/23 00:02:07 (7 months ago)
- Location:
- trunk/abcl
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/.github/workflows/abcl-test.yml
r15607 r15646 67 67 68 68 - name: Test Jeannie 69 run: ./abcl --batch --load ./ci/ test-jeannie.lisp69 run: ./abcl --batch --load ./ci/ensure-maven.lisp --load ./ci/test-jeannie.lisp 70 70 71 71 - name: Test CFFI 72 run: ./abcl --batch --load ./ci/ test-cffi.lisp72 run: ./abcl --batch --load ./ci/ensure-maven.lisp --load ./ci/test-cffi.lisp 73 73 74 74 - name: Test STATIC-VECTORS 75 run: ./abcl --batch --load ./ci/ test-static-vectors.lisp75 run: ./abcl --batch --load ./ci/ensure-maven.lisp --load ./ci/test-static-vectors.lisp 76 76 77 77 - name: Test CL+SSL 78 run: ./abcl --batch --load ./ci/ test-cl+ssl.lisp78 run: ./abcl --batch --load ./ci/ensure-maven.lisp --load ./ci/test-cl+ssl.lisp 79 79 80 80 - name: Test IRONCLAD -
trunk/abcl/ci/test-cffi.lisp
r15330 r15646 1 1 (require :asdf) 2 2 (require :abcl-contrib) 3 4 (asdf:make :abcl-asdf) 5 (asdf:make :jna) 3 6 4 7 (ql:quickload
Note: See TracChangeset
for help on using the changeset viewer.