Compare commits
2 commits
6cdf49965b
...
7f4303eddd
Author | SHA1 | Date | |
---|---|---|---|
7f4303eddd | |||
f8699dcc8c |
4 changed files with 71 additions and 12 deletions
59
.forgejo/workflows/ci.yml
Normal file
59
.forgejo/workflows/ci.yml
Normal file
|
@ -0,0 +1,59 @@
|
||||||
|
name: 'CI'
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- 'master'
|
||||||
|
pull_request:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
test:
|
||||||
|
runs-on: docker
|
||||||
|
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
lisp:
|
||||||
|
- sbcl-bin
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Restore cache
|
||||||
|
id: restore-cache
|
||||||
|
uses: actions/cache/restore@v4
|
||||||
|
with:
|
||||||
|
path: |
|
||||||
|
/usr/local/bin/ros
|
||||||
|
/usr/local/etc/roswell/
|
||||||
|
~/.roswell
|
||||||
|
~/.config/common-lisp/source-registry.conf.d
|
||||||
|
~/lisp
|
||||||
|
.qlot/
|
||||||
|
key: roswell-${{ runner.os }}-${{ matrix.lisp }}-${{ hashFiles('qlfile.lock') }}
|
||||||
|
|
||||||
|
- name: Install dependencies
|
||||||
|
if: steps.restore-cache.outputs.cache-hit != 'true'
|
||||||
|
env:
|
||||||
|
LISP: ${{ matrix.lisp }}
|
||||||
|
run: |
|
||||||
|
curl -L https://raw.githubusercontent.com/roswell/roswell/master/scripts/install-for-ci.sh | sh
|
||||||
|
ros install fukamachi/qlot
|
||||||
|
PATH="~/.roswell/bin:$PATH"
|
||||||
|
qlot install
|
||||||
|
|
||||||
|
- name: Save cache
|
||||||
|
id: save-cache
|
||||||
|
uses: actions/cache/save@v4
|
||||||
|
if: steps.restore-cache.outputs.cache-hit != 'true'
|
||||||
|
with:
|
||||||
|
path: |
|
||||||
|
/usr/local/bin/ros
|
||||||
|
/usr/local/etc/roswell/
|
||||||
|
~/.roswell
|
||||||
|
~/.config/common-lisp/source-registry.conf.d
|
||||||
|
~/lisp
|
||||||
|
.qlot/
|
||||||
|
key: ${{ steps.restore-cache.outputs.cache-primary-key }}
|
||||||
|
|
||||||
|
- name: Run tests
|
||||||
|
run: .qlot/bin/rove ningle-fbr.asd
|
|
@ -1,4 +1,4 @@
|
||||||
name: 'test'
|
name: 'CI'
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
|
@ -14,7 +14,6 @@ jobs:
|
||||||
matrix:
|
matrix:
|
||||||
lisp:
|
lisp:
|
||||||
- sbcl-bin
|
- sbcl-bin
|
||||||
- ccl-bin
|
|
||||||
|
|
||||||
env:
|
env:
|
||||||
LISP: ${{ matrix.lisp }}
|
LISP: ${{ matrix.lisp }}
|
5
qlfile
5
qlfile
|
@ -3,5 +3,6 @@ ql lack
|
||||||
ql cl-ppcre
|
ql cl-ppcre
|
||||||
ql alexandria
|
ql alexandria
|
||||||
ql trivial-system-loader
|
ql trivial-system-loader
|
||||||
github rove fukamachi/rove
|
|
||||||
github dissect shinmera/dissect
|
git rove https://github.com/fukamachi/rove
|
||||||
|
git dissect https://github.com/shinmera/dissect
|
||||||
|
|
12
qlfile.lock
12
qlfile.lock
|
@ -23,10 +23,10 @@
|
||||||
:initargs (:%version :latest)
|
:initargs (:%version :latest)
|
||||||
:version "ql-2024-10-12"))
|
:version "ql-2024-10-12"))
|
||||||
("rove" .
|
("rove" .
|
||||||
(:class qlot/source/github:source-github
|
(:class qlot/source/git:source-git
|
||||||
:initargs (:repos "fukamachi/rove" :ref nil :branch nil :tag nil)
|
:initargs (:remote-url "https://github.com/fukamachi/rove")
|
||||||
:version "github-cacea7331c10fe9d8398d104b2dfd579bf7ea353"))
|
:version "git-cacea7331c10fe9d8398d104b2dfd579bf7ea353"))
|
||||||
("dissect" .
|
("dissect" .
|
||||||
(:class qlot/source/github:source-github
|
(:class qlot/source/git:source-git
|
||||||
:initargs (:repos "shinmera/dissect" :ref nil :branch nil :tag nil)
|
:initargs (:remote-url "https://github.com/shinmera/dissect")
|
||||||
:version "github-a70cabcd748cf7c041196efd711e2dcca2bbbb2c"))
|
:version "git-a70cabcd748cf7c041196efd711e2dcca2bbbb2c"))
|
||||||
|
|
Loading…
Reference in a new issue