Skip to content

Commit

Permalink
Start setting up some shite
Browse files Browse the repository at this point in the history
  • Loading branch information
Shinmera committed Jan 13, 2024
1 parent 239f996 commit be0f9cf
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
patreon: Shinmera
github: Shinmera
ko_fi: shinmera
44 changes: 44 additions & 0 deletions .github/workflows/examples.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: examples
on: [workflow_dispatch]
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Install env
run: |
sudo apt-get -qq install sbcl
curl -o ~/quicklisp.lisp https://beta.quicklisp.org/quicklisp.lisp
sbcl --noinform --load ~/quicklisp.lisp --eval '(quicklisp-quickstart:install)' --non-interactive
sbcl --noinform \
--eval '(load "/home/runner/quicklisp/setup.lisp")' \
--eval '(ql-dist:install-dist "http://dist.shirakumo.org/shirakumo.txt" :prompt NIL)' \
--non-interactive
- name: Restore dependencies cache
uses: actions/cache@v3
with:
path: |
/home/runner/quicklisp
/home/runner/.cache/common-lisp
key: ${{ runner.os }}
restore-keys: ${{ runner.os }}
- uses: actions/checkout@v1
- name: Build the library
run: |
sbcl --noinform \
--eval '(load "/home/runner/quicklisp/setup.lisp")' \
--eval '(ql:quickload :trial-examples)' \
--non-interactive
- name: Build the binary
run: |
sbcl --noinform \
--eval '(load "/home/runner/quicklisp/setup.lisp")' \
--eval '(asdf:load-asd "/home/runner/work/wg-manager/wg-manager/wg-manager.asd")' \
--eval '(asdf:make :trial-examples)' \
--non-interactive
- name: Release
uses: softprops/action-gh-release@v1
with:
append_body: true
files: trial-examples/bin/

0 comments on commit be0f9cf

Please sign in to comment.