Skip to content

Commit

Permalink
Add CI for POIU
Browse files Browse the repository at this point in the history
  • Loading branch information
ruricolist committed Dec 20, 2024
1 parent 2036fb1 commit c82b5d0
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,13 @@ env:

jobs:
test_ubuntu:
name: ${{ matrix.lisp }} on ${{ matrix.os }}
name: ${{ matrix.lisp }} on ${{ matrix.os }} with POIU=${{ matrix.poiu }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
lisp: [sbcl-bin]
os: [ubuntu-latest]
poiu: ["", "1"]

steps:
- uses: actions/checkout@v1
Expand All @@ -35,8 +36,10 @@ jobs:
- name: Build Kiln
run: |
export PATH=$PATH:$HOME/.local/bin
test -n "{{ matrix.poiu }}" && \
git clone --depth=1 https://github.com/fare/poiu.git ~/common-lisp/poiu
mkdir -p ~/.local/bin
make && make install
KILN_POIU=1 make && make install
- name: Test Kiln
run: |
export CL_SOURCE_REGISTRY="$(pwd):"
Expand Down

0 comments on commit c82b5d0

Please sign in to comment.