Skip to content

Commit

Permalink
Autobuild
Browse files Browse the repository at this point in the history
  • Loading branch information
Shinmera committed Sep 11, 2023
1 parent fd6c85b commit fcff527
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: build
permissions:
contents: write
on:
push:
tags:
- "v*.*.*"
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 --load ~/quicklisp.lisp --eval '(quicklisp-quickstart:install)' --non-interactive
- uses: actions/checkout@v1
- name: Build the library
run: |
sbcl --noinform \
--eval '(load "/home/runner/quicklisp/setup.lisp")' \
--eval '(asdf:load-asd "/home/runner/work/multiposter/multiposter/multiposter.asd")' \
--eval '(ql:quickload :multiposter)' \
--non-interactive
- name: Build the binary
run: |
sbcl --noinform \
--eval '(load "/home/runner/quicklisp/setup.lisp")' \
--eval '(asdf:load-asd "/home/runner/work/multiposter/multiposter/multiposter.asd")' \
--eval '(asdf:make :wg-manager)' \
--non-interactive
- name: Release
uses: softprops/action-gh-release@v1
with:
append_body: true
files: multiposter

0 comments on commit fcff527

Please sign in to comment.