Apply cache
All checks were successful
CI / test (sbcl-bin) (pull_request) Successful in 5m23s

This commit is contained in:
paku 2025-01-11 14:47:26 +09:00
parent 46fad5d5f8
commit 9205d89641
Signed by: paku
GPG key ID: 5B4E8402BCC50607

View file

@ -9,27 +9,50 @@ 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
id: restore-cache
uses: actions/cache/restore@v4
with:
path: |
~/.roswell
~/.config/common-lisp/source-registry.conf.d
~/lisp
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
- name: Install Qlot ros install fukamachi/qlot
run: ros install fukamachi/qlot
- name: Save cache
id: save-cache
uses: actions/cache/save@v4
with:
path: |
~/.roswell
~/.config/common-lisp/source-registry.conf.d
~/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"
qlot install qlot install
- name: Run tests - name: Run tests
run: .qlot/bin/rove hsx.asd run: .qlot/bin/rove hsx.asd