minor cleanups. #124
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
# This is a basic workflow to help you get started with Actions | |
name: CI | |
# Controls when the workflow 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: | |
name: ${{ matrix.lisp }} on ${{ matrix.os }} | |
strategy: | |
matrix: | |
lisp: [sbcl-bin] #, ccl ] #, ecl, allegro] | |
os: [ ubuntu-latest ] #, windows-latest, macos-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
# tell git not to convert line endings | |
# change roswell install dir and add it to path | |
# Check out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v2 | |
- name: cache .roswell | |
id: cache-dot-roswell | |
uses: actions/cache@v1 | |
with: | |
path: ~/.roswell | |
key: ${{ runner.os }}-dot-roswell-${{ matrix.lisp }}-${{ hashFiles('**/*.asd') }} | |
restore-keys: | | |
${{ runner.os }}-dot-roswell-${{ matrix.lisp }}- | |
${{ runner.os }}-dot-roswell- | |
- name: install roswell | |
shell: bash | |
# always run install, since it does some global installs and setup that isn't cached | |
env: | |
LISP: ${{ matrix.lisp }} | |
run: curl -L https://raw.githubusercontent.com/roswell/roswell/master/scripts/install-for-ci.sh | sh -x | |
- name: run lisp | |
continue-on-error: true | |
shell: bash | |
run: | | |
ros -e '(format t "~a:~a on ~a~%...~%~%" (lisp-implementation-type) (lisp-implementation-version) (machine-type))' | |
ros -e '(format t " fixnum bits:~a~%" (integer-length most-positive-fixnum))' | |
ros -e "(ql:quickload 'trivial-features)" -e '(format t "features = ~s~%" *features*)' | |
- name: update ql dist if we have one cached | |
shell: bash | |
run: ros -e "(ql:update-all-dists :prompt nil)" | |
- name: load code and run tests | |
shell: bash | |
run: | | |
ros -e '(handler-bind (#+asdf3.2(asdf:bad-SYSTEM-NAME (function MUFFLE-WARNING))) (handler-case (ql:quickload :sento/tests) (error (a) (format t "caught error ~s~%~a~%" a a) (uiop:quit 1))))' -e "(unless (5am:run! 'senti.tests:test-suite) (uiop:quit 1))" |