-
Notifications
You must be signed in to change notification settings - Fork 42
49 lines (45 loc) · 1.48 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
name: CI
on: [push, pull_request]
env:
GITHUB_WORKSPACE: $HOME/common-lisp/serapeum
jobs:
test:
name: ${{ matrix.lisp }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
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 }}
run: |
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'
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'