mirror of
https://github.com/pmai/md5.git
synced 2025-12-21 14:34:29 +01:00
Add initial support for Actions CI using roswell
This commit is contained in:
38
.github/workflows/ci.yml
vendored
Normal file
38
.github/workflows/ci.yml
vendored
Normal file
@ -0,0 +1,38 @@
|
||||
name: Common Lisp CI
|
||||
|
||||
on:
|
||||
push:
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
|
||||
jobs:
|
||||
test:
|
||||
name: ${{ matrix.lisp }} on ${{ matrix.os }}
|
||||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
matrix:
|
||||
lisp: [sbcl-bin, clisp]
|
||||
os: [ubuntu-latest, macOS-latest]
|
||||
exclude:
|
||||
# CLISP currently does not build on ubuntu due to readline7
|
||||
- lisp: clisp
|
||||
os: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Install Roswell
|
||||
env:
|
||||
LISP: ${{ matrix.lisp }}
|
||||
run: |
|
||||
curl -L https://raw.githubusercontent.com/roswell/roswell/master/scripts/install-for-ci.sh | sh
|
||||
|
||||
- name: Build and Run Tests
|
||||
run: |
|
||||
ros -e '(pushnew :md5-testing cl:*features*)
|
||||
(ql:quickload "md5")
|
||||
(unless (md5::test-rfc1321)
|
||||
(uiop:quit 1))
|
||||
(unless (md5::test-other)
|
||||
(uiop:quit 1))'
|
||||
Reference in New Issue
Block a user