-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1fdf981
commit 9eb09ab
Showing
1 changed file
with
20 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,13 +17,27 @@ jobs: | |
- sbcl-bin | ||
|
||
env: | ||
ON_CI_SERVER: ${{ 1 }} | ||
ON_CI_SERVER: 1 | ||
QUICKLISP_ADD_TO_INIT_FILE: true | ||
LISP: ${{ matrix.lisp }} | ||
|
||
steps: | ||
- uses: actions/checkout@v1 | ||
- uses: 40ants/setup-lisp@v1 | ||
with: | ||
asdf-system: cl-info | ||
- uses: porcuquine/[email protected] | ||
- uses: actions/checkout@v3 | ||
|
||
# Install system dependencies first | ||
- name: Install SQLite | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y sqlite3 libsqlite3-dev | ||
# Install SBCL and Quicklisp | ||
- name: Setup Common Lisp | ||
uses: 40ants/setup-lisp@v2 | ||
with: | ||
asdf-system: loam | ||
|
||
# Run the tests | ||
- name: Run tests | ||
run: | | ||
ros -e '(ql:quickload :loam :silent t)' \ | ||
-e '(asdf:test-system :loam)' |