Skip to content

Commit

Permalink
Add clasp-bin to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ruricolist committed Apr 25, 2024
1 parent 861bfcd commit bc44f2e
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion .github/workflows/ci.yml
Expand Up @@ -11,11 +11,14 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
lisp: [sbcl-bin, ccl-bin/1.12.1, ecl/21.2.1]
lisp: [sbcl-bin, ccl-bin/1.12.1, ecl/21.2.1, clasp-bin]
os: [ubuntu-latest, macOS-latest]

steps:
- uses: actions/checkout@v1
- name: Install libllvm
run: |
sudo apt update --error-on=any && sudo apt install -y libllvm13
- name: Install Roswell
env:
LISP: ${{ matrix.lisp }}
Expand All @@ -27,3 +30,20 @@ jobs:
run: |
PATH="~/.roswell/bin:$PATH"
run-fiveam -l serapeum/tests 'serapeum.tests::serapeum'
test-clasp:
name: clasp on ubuntu-latest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Install libllvm
run: |
sudo apt update --error-on=any && sudo apt install -y libllvm13
- name: Install Roswell
run: |
env LISP=clasp-bin curl -L https://raw.githubusercontent.com/roswell/roswell/master/scripts/install-for-ci.sh | sh
- name: Install ci-utils
run: ros install ci-utils
- name: Run tests
run: |
PATH="~/.roswell/bin:$PATH"
run-fiveam -l serapeum/tests 'serapeum.tests::serapeum'

0 comments on commit bc44f2e

Please sign in to comment.