Skip to content

Commit

Permalink
Add linux github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
norbusan committed Sep 17, 2024
1 parent 598accd commit f0680e1
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Linux

# only build on push of tags
on: [push]
push:
tags:
- '*'

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
with:
path: 'repo'
- name: build
uses: addnab/docker-run-action@v3
with:
image: fukamachi/sbcl
options: -v ${{ github.workspace }}:/work
run: |
apt update
apt install -y gcc file
cd /work/repo
./configure --with-lisp=sbcl --enable-distribution
make
- name: save artifact
uses: actions/upload-artifact@v4
with:
name: cafeobj-sbcl-x86_64-linux
path: ${{ github.workspace }}/repo/cafeobj-*-sbcl-*Linux.tar.gz

0 comments on commit f0680e1

Please sign in to comment.