Skip to content

Commit

Permalink
test fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
winston-h-zhang committed Oct 24, 2024
1 parent 1fdf981 commit 9eb09ab
Showing 1 changed file with 20 additions and 6 deletions.
26 changes: 20 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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)'

0 comments on commit 9eb09ab

Please sign in to comment.