Compare commits

...

1 commit

Author SHA1 Message Date
b5f905942d
Apply cache 2025-01-11 14:47:26 +09:00

View file

@ -20,16 +20,29 @@ jobs:
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Install Roswell - name: Install Roswell
if: steps.cache-roswell.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 - name: Install Qlot
if: steps.cache-roswell.outputs.cache-hit != 'true'
run: ros install fukamachi/qlot run: ros install fukamachi/qlot
- name: Cache Roswell
id: cache-roswell
uses: actions/cache@v4
with:
path: .roswell/
key: roswell-${{ runner.os }}-${{ matrix.lisp }}
- 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