Migrate GitHub Actions to Forgejo actions
This commit is contained in:
parent
f8699dcc8c
commit
67cfb47390
2 changed files with 59 additions and 29 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
|
29
.github/workflows/test.yml
vendored
29
.github/workflows/test.yml
vendored
|
@ -1,29 +0,0 @@
|
||||||
name: 'test'
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- 'main'
|
|
||||||
pull_request:
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
tests:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
lisp:
|
|
||||||
- sbcl-bin
|
|
||||||
- ccl-bin
|
|
||||||
|
|
||||||
env:
|
|
||||||
LISP: ${{ matrix.lisp }}
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
- uses: 40ants/setup-lisp@v4
|
|
||||||
with:
|
|
||||||
asdf-system: ningle-fbr
|
|
||||||
- uses: 40ants/run-tests@v2
|
|
||||||
with:
|
|
||||||
asdf-system: ningle-fbr
|
|
Loading…
Reference in a new issue