Compare commits
1 commit
b5f905942d
...
fbb36ea960
Author | SHA1 | Date | |
---|---|---|---|
fbb36ea960 |
1 changed files with 18 additions and 14 deletions
|
@ -9,36 +9,40 @@ on:
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
runs-on: docker
|
runs-on: docker
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
lisp:
|
lisp:
|
||||||
- sbcl-bin
|
- sbcl-bin
|
||||||
|
|
||||||
env:
|
env:
|
||||||
LISP: ${{ matrix.lisp }}
|
LISP: ${{ matrix.lisp }}
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Install Roswell
|
- name: Restore cache
|
||||||
if: steps.cache-roswell.outputs.cache-hit != 'true'
|
id: restore-cache
|
||||||
|
uses: actions/cache/restore@v4
|
||||||
|
with:
|
||||||
|
path: .roswell/
|
||||||
|
key: roswell-${{ runner.os }}-${{ matrix.lisp }}
|
||||||
|
|
||||||
|
- name: Install Roswell and Qlot
|
||||||
|
if: steps.restore-cache.outputs.cache-hit != 'true'
|
||||||
env:
|
env:
|
||||||
LISP: ${{ matrix.lisp }}
|
LISP: ${{ matrix.lisp }}
|
||||||
run: |
|
run: |
|
||||||
curl -L https://raw.githubusercontent.com/roswell/roswell/master/scripts/install-for-ci.sh | sh
|
curl -L https://raw.githubusercontent.com/roswell/roswell/master/scripts/install-for-ci.sh | sh
|
||||||
|
ros install fukamachi/qlot
|
||||||
- name: Install Qlot
|
|
||||||
if: steps.cache-roswell.outputs.cache-hit != 'true'
|
- name: Save cache
|
||||||
run: ros install fukamachi/qlot
|
id: save-cache
|
||||||
|
uses: actions/cache/save@v4
|
||||||
- name: Cache Roswell
|
|
||||||
id: cache-roswell
|
|
||||||
uses: actions/cache@v4
|
|
||||||
with:
|
with:
|
||||||
path: .roswell/
|
path: .roswell/
|
||||||
key: roswell-${{ runner.os }}-${{ matrix.lisp }}
|
key: ${{ steps.restore-cache.outputs.cache-primary-key }}
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
PATH="~/.roswell/bin:$PATH"
|
PATH="~/.roswell/bin:$PATH"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue