Fix alternative HDDL plan formats. #77
Workflow file for this run
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
name: CI | |
# Controls when the action will run. | |
on: | |
# Triggers the workflow on push or pull request events but only for the master branch | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
test: | |
# The type of runner that the job will run on | |
runs-on: ${{matrix.os}} | |
container: | |
image: clfoundation/${{matrix.lisp}}:latest | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
lisp: | |
- sbcl | |
- ccl | |
- allegro | |
# installation of quicklisp fails on Allegro for some reason. Have to fix this later. | |
env: | |
I_AGREE_TO_ALLEGRO_EXPRESS_LICENSE: yes | |
steps: | |
- name: install JSON wrangling binaries | |
run: apt update && apt install -y jq python3 python3-pip && python3 -m pip install yq check-jsonschema | |
- uses: actions/checkout@v3 | |
- run: install-quicklisp | |
- name: install-modern-asdf | |
run: | |
mkdir /asdf && cd /asdf && wget https://asdf.common-lisp.dev/archives/asdf.lisp | |
- name: SBCL | |
if: ${{ matrix.lisp == 'sbcl' }} | |
run: sbcl --non-interactive | |
--load /asdf/asdf.lisp | |
--load $GITHUB_WORKSPACE/do-test.lisp | |
--eval '(uiop:quit 0)' | |
- name: Allegro | |
if: ${{ matrix.lisp == 'allegro' }} | |
run: alisp -L /asdf/asdf.lisp -L $GITHUB_WORKSPACE/do-test.lisp | |
--kill | |
- name: Clozure | |
if: ${{ matrix.lisp == 'ccl' }} | |
run: ccl --batch | |
--load /asdf/asdf.lisp | |
--load $GITHUB_WORKSPACE/do-test.lisp | |
--eval '(uiop:quit 0)' |