Skip to content
This repository was archived by the owner on May 19, 2025. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 41 additions & 0 deletions .github/workflows/ABCL.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# @file CCL-test.yml
---
name: ABCL-Test

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
test:
runs-on: ubuntu-latest

steps:
- name: Download ABCL
run: |
sudo apt install ant
git clone https://github.com/armedbear/abcl.git
cd abcl
ant
cd ..

- name: Download quicklisp
run: curl -o quicklisp.lisp 'https://beta.quicklisp.org/quicklisp.lisp'

- name: Install quicklisp
run: |
./abcl/abcl --batch --load quicklisp.lisp --eval "(quicklisp-quickstart:install :path \"$GITHUB_WORKSPACE/quicklisp/\") (quit)"
./abcl/abcl --batch --load "$GITHUB_WORKSPACE/quicklisp/setup.lisp" --eval '(ql-util:without-prompting (ql:add-to-init-file)) (quit)'

- name: Download repo
uses: actions/checkout@v2
with:
path: quicklisp/local-projects/ace.core

- name: Load and run tests
run: |
./abcl/abcl --batch --eval '(ql:quickload :bordeaux-threads)' --eval '(ql:quickload :closer-mop)' --eval '(ql:quickload :ace.core)' 2> report
cat report
! grep -q "Error" report