Changeset 15646


Ignore:
Timestamp:
02/20/23 00:02:07 (7 months ago)
Author:
Mark Evenson
Message:

ci: ensure JNA is made before CFFI

Fallback to ABCL-BUILD:ENSURE-MAVEN from ABCL bootstrap.

setf ABCL-ASDF:*MVN-LIBS-DIRECTORY* as side-effect to ensuring maven.

ci: use ensure-maven as initialization for those that need it

Location:
trunk/abcl
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/abcl/.github/workflows/abcl-test.yml

    r15607 r15646  
    6767
    6868      - name: Test Jeannie
    69         run: ./abcl --batch --load ./ci/test-jeannie.lisp
     69        run: ./abcl --batch --load ./ci/ensure-maven.lisp --load ./ci/test-jeannie.lisp
    7070
    7171      - name: Test CFFI
    72         run: ./abcl --batch --load ./ci/test-cffi.lisp
     72        run: ./abcl --batch --load ./ci/ensure-maven.lisp --load ./ci/test-cffi.lisp
    7373
    7474      - name: Test STATIC-VECTORS
    75         run: ./abcl --batch --load ./ci/test-static-vectors.lisp
     75        run: ./abcl --batch --load ./ci/ensure-maven.lisp --load ./ci/test-static-vectors.lisp
    7676
    7777      - name: Test CL+SSL
    78         run: ./abcl --batch --load ./ci/test-cl+ssl.lisp
     78        run: ./abcl --batch --load ./ci/ensure-maven.lisp --load ./ci/test-cl+ssl.lisp
    7979
    8080      - name: Test IRONCLAD
  • trunk/abcl/ci/test-cffi.lisp

    r15330 r15646  
    11(require :asdf)
    22(require :abcl-contrib)
     3
     4(asdf:make :abcl-asdf)
     5(asdf:make :jna) 
    36
    47(ql:quickload
Note: See TracChangeset for help on using the changeset viewer.