Skip to content

[ci] avoid install digikar99/specialized-array-dispatch #121

[ci] avoid install digikar99/specialized-array-dispatch

[ci] avoid install digikar99/specialized-array-dispatch #121

Workflow file for this run

on: [push, pull_request]
jobs:
test:
name: ${{ matrix.lisp }}
strategy:
matrix:
lisp: [sbcl, ccl, ecl]
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Update $PATH
run: |
echo $PATH
echo "PATH=$HOME/bin:$PATH" >> $GITHUB_ENV
- name: Check $PATH
run: echo $PATH
- name: Download implementation
env:
LISP: ${{ matrix.lisp }}
run: |
pwd
ls -l
bash <(curl -s https://raw.githubusercontent.com/digikar99/lisp-travis-lite/master/run.sh)
# Testing it on the second load confirms that functionalities do not
# solely eval-when compile-toplevel, and that they persist across multiple loads.
- name: Lite - Run Tests
run: |
cl --eval '(progn
(push "~/" ql:*local-project-directories*)
(push :travis *features*)
(ql:quickload "polymorphic-functions-lite")
(asdf:test-system "polymorphic-functions-lite")
(uiop:quit 0))'
- name: Full - Compile Tests
run: |
cl --eval '(progn
(push "~/" ql:*local-project-directories*)
(print ql:*local-project-directories*)
(print (ql:where-is-system "polymorphic-functions"))
(ql:quickload "polymorphic-functions")
(uiop:quit 0))'
# Testing it on the second load confirms that functionalities do not
# solely eval-when compile-toplevel, and that they persist across multiple loads.
- name: Full - Run Tests
run: |
cl --eval '(progn
(push "~/" ql:*local-project-directories*)
(push :travis *features*)
(ql:quickload "polymorphic-functions")
(asdf:test-system "polymorphic-functions")
(uiop:quit 0))'