Compare commits
2 commits
17aa3dcce7
...
e3f4773257
Author | SHA1 | Date | |
---|---|---|---|
e3f4773257 | |||
60731d3382 |
3 changed files with 23 additions and 16 deletions
|
@ -31,17 +31,26 @@ jobs:
|
||||||
qlfile.lock
|
qlfile.lock
|
||||||
.qlot
|
.qlot
|
||||||
~/.cache/common-lisp/
|
~/.cache/common-lisp/
|
||||||
key: roswell-${{ runner.os }}-${{ matrix.lisp }}-${{ hashFiles('qlfile', 'qlfile.lock', '*.asd') }}
|
key: roswell-${{ runner.os }}-${{ matrix.lisp }}-${{ hashFiles('qlfile', 'qlfile.lock', '*.asd', '.forgejo/workflows/ci.yml') }}
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install Roswell
|
||||||
if: steps.restore-cache.outputs.cache-hit != 'true'
|
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
|
||||||
|
if: steps.restore-cache.outputs.cache-hit != 'true'
|
||||||
|
run: |
|
||||||
ros install fukamachi/qlot
|
ros install fukamachi/qlot
|
||||||
|
|
||||||
|
- name: Install dependencies
|
||||||
|
if: steps.restore-cache.outputs.cache-hit != 'true'
|
||||||
|
run: |
|
||||||
PATH="~/.roswell/bin:$PATH"
|
PATH="~/.roswell/bin:$PATH"
|
||||||
qlot install
|
qlot install
|
||||||
|
qlot exec ros install ningle-fbr
|
||||||
|
|
||||||
- name: Save cache
|
- name: Save cache
|
||||||
id: save-cache
|
id: save-cache
|
22
.github/workflows/CI.yml
vendored
22
.github/workflows/CI.yml
vendored
|
@ -14,18 +14,16 @@ jobs:
|
||||||
matrix:
|
matrix:
|
||||||
lisp:
|
lisp:
|
||||||
- sbcl-bin
|
- sbcl-bin
|
||||||
|
- ccl-bin
|
||||||
|
|
||||||
|
env:
|
||||||
|
LISP: ${{ matrix.lisp }}
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
- uses: 40ants/setup-lisp@v4
|
||||||
- name: Install dependencies
|
with:
|
||||||
env:
|
asdf-system: ningle-fbr
|
||||||
LISP: ${{ matrix.lisp }}
|
- uses: 40ants/run-tests@v2
|
||||||
run: |
|
with:
|
||||||
curl -L https://raw.githubusercontent.com/roswell/roswell/master/scripts/install-for-ci.sh | sh
|
asdf-system: ningle-fbr
|
||||||
ros install fukamachi/qlot
|
|
||||||
PATH="~/.roswell/bin:$PATH"
|
|
||||||
qlot install
|
|
||||||
|
|
||||||
- name: Run tests
|
|
||||||
run: .qlot/bin/rove ningle-fbr.asd
|
|
|
@ -13,7 +13,7 @@
|
||||||
("cl-ppcre" .
|
("cl-ppcre" .
|
||||||
(:class qlot/source/ql:source-ql
|
(:class qlot/source/ql:source-ql
|
||||||
:initargs (:%version :latest)
|
:initargs (:%version :latest)
|
||||||
:version "ql-2023-10-21"))
|
:version "ql-2023-06-18"))
|
||||||
("alexandria" .
|
("alexandria" .
|
||||||
(:class qlot/source/ql:source-ql
|
(:class qlot/source/ql:source-ql
|
||||||
:initargs (:%version :latest)
|
:initargs (:%version :latest)
|
||||||
|
|
Loading…
Reference in a new issue