Change Variable Wire Printing for Compiled VampIR Function #329
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' | |
on: | |
push: | |
branches: | |
- 'main' | |
- 'master' | |
pull_request: | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
lisp: | |
- sbcl-bin | |
- ccl-bin | |
env: | |
LISP: ${{ matrix.lisp }} | |
QUICKLISP_DIST: quicklisp | |
steps: | |
# checkout the package | |
- uses: actions/checkout@v2 | |
- name: Grant All Perms to Make Cache Restoring Possible | |
run: | | |
sudo mkdir -p /usr/local/etc/roswell | |
sudo chown "${USER}" /usr/local/etc/roswell | |
# Here the ros binary will be restored: | |
sudo chown "${USER}" /usr/local/bin | |
- name: Get Current Month | |
id: current-month | |
run: | | |
echo "::set-output name=value::$(date -u "+%Y-%m")" | |
- name: Cache Roswell Setup | |
id: cache | |
uses: actions/cache@v2 | |
env: | |
cache-name: cache-roswell | |
with: | |
path: | | |
qlfile | |
qlfile.lock | |
/usr/local/bin/ros | |
~/.cache/common-lisp/ | |
~/.roswell | |
/usr/local/etc/roswell | |
.qlot | |
key: "${{ steps.current-month.outputs.value }}-${{ env.cache-name }}-${{ runner.os }}-${{ hashFiles('qlfile.lock') }}" | |
- name: Restore Path To Cached Files | |
run: | | |
echo $HOME/.roswell/bin >> $GITHUB_PATH | |
echo .qlot/bin >> $GITHUB_PATH | |
if: steps.cache.outputs.cache-hit == 'true' | |
- uses: 40ants/setup-lisp@v2 | |
if: steps.cache.outputs.cache-hit != 'true' | |
with: | |
asdf-system: geb | |
- name: 'run tests' | |
uses: 40ants/run-tests@v2 | |
with: | |
asdf-system: geb |