Skip to content

Add linux github workflow #7

Add linux github workflow

Add linux github workflow #7

Workflow file for this run

name: Linux
# only build on push of tags
on: [push]

Check failure on line 4 in .github/workflows/linux.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/linux.yml

Invalid workflow file

You have an error in your yaml syntax on line 4
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