Skip to content

Commit

Permalink
Bump 40ants/setup-lisp to v4 in workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
ak-coram committed May 2, 2024
1 parent cdde527 commit 6119b8a
Showing 1 changed file with 7 additions and 10 deletions.
17 changes: 7 additions & 10 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,45 +13,42 @@ on:

jobs:
test:
name: ${{ matrix.lisp }} / ${{ matrix.quicklisp-dist }} on ${{ matrix.os }}
name: ${{ matrix.lisp }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
lisp: [sbcl-bin, ccl-bin/1.12.2, ecl/23.9.9]
os: [ubuntu-latest, windows-latest, macos-latest]
quicklisp-dist:
- quicklisp
- ultralisp
exclude:
- os: windows-latest
lisp: ecl/23.9.9
- os: windows-latest
quicklisp-dist: ultralisp
lisp: ccl-bin/1.12.2
- os: macos-latest
lisp: ccl-bin/1.12.2
env:
LISP: ${{ matrix.lisp }}
QUICKLISP_DIST: ${{ matrix.quicklisp-dist }}
steps:
- uses: actions/checkout@v4

- name: Setup Lisp
continue-on-error: true
uses: 40ants/setup-lisp@v2
uses: 40ants/setup-lisp@v4
with:
qlfile-template: |
{% ifequal quicklisp_dist "ultralisp" %}
dist ultralisp http://dist.ultralisp.org
{% endifequal %}
- name: Run tests (Non-Windows)
if: runner.os != 'Windows'
shell: bash
run: |
ros install neil-lindquist/ci-utils
asdf-register-project
run-fiveam -e t -l trivial-clock/test :trivial-clock
- name: Run tests (Windows)
if: runner.os == 'Windows'
shell: msys2 {0}
run: |
ros install neil-lindquist/ci-utils
asdf-register-project
run-fiveam -e t -l trivial-clock/test :trivial-clock

0 comments on commit 6119b8a

Please sign in to comment.