Migrate from GitHub to Forgejo #1

Merged
paku merged 5 commits from forgejo into master 2025-01-11 09:52:58 +00:00
Showing only changes of commit 0112e5c315 - Show all commits

View file

@ -9,27 +9,53 @@ 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: |
/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: 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: Install dependencies
run: |
PATH="~/.roswell/bin:$PATH" PATH="~/.roswell/bin:$PATH"
qlot install qlot install
- name: Save cache
id: save-cache
uses: actions/cache/save@v4
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 - name: Run tests
run: .qlot/bin/rove hsx.asd run: .qlot/bin/rove hsx.asd