Run Common Lisp reference utility #22
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: 'Continuous Integration' | |
on: | |
workflow_dispatch: | |
push: | |
branches-ignore: | |
- v1 | |
tags-ignore: | |
- v1.* | |
jobs: | |
exercise-on-tier-1-platforms: | |
strategy: | |
matrix: | |
implementation: ['sbcl'] | |
os: ['ubuntu-latest', 'macos-latest'] | |
runs-on: '${{ matrix.os }}' | |
name: 'Exercise on Tier 1 Platform' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: 'Install MacPorts' | |
if: runner.os == 'macOS' | |
uses: melusina-org/setup-macports@v1 | |
- name: 'Setup Common Lisp' | |
uses: melusina-org/setup-common-lisp@v1 | |
with: | |
implementation: '${{ matrix.implementation }}' | |
- name: 'Setup Quicklisp' | |
uses: melusina-org/setup-quicklisp@v1 | |
id: quicklisp | |
with: | |
implementation: '${{ matrix.implementation }}' | |
- name: 'Install CL-GITHUB-ACTIONS' | |
uses: actions/checkout@v4 | |
with: | |
repository: melusina-org/cl-github-actions | |
path: ${{ steps.quicklisp.outputs.quicklisp-local-projects }}/cl-github-actions | |
- name: 'Run unit tests' | |
uses: melusina-org/run-common-lisp-program@v1 | |
with: | |
implementation: '${{ matrix.implementation }}' | |
system: 'org.melusina.github-action.make-common-lisp-program/testsuite' | |
entrypoint: 'unit-tests' | |
- name: 'Checkout Common Lisp Reference Utility' | |
uses: actions/checkout@v4 | |
with: | |
repository: melusina-org/reference-utility | |
path: ${{ steps.quicklisp.outputs.quicklisp-local-projects }}/reference-utility | |
- name: 'Make Common Lisp Reference Utility' | |
uses: ./ | |
id: make | |
with: | |
implementation: '${{ matrix.implementation }}' | |
system: 'org.melusina.reference-utility/executable' | |
- name: 'Run Common Lisp Reference Utility' | |
shell: sh | |
run: | | |
${{ steps.make.outputs.build-pathname }} |