Skip to content

Build linux with sbcl docker, for now only x64 #2

Build linux with sbcl docker, for now only x64

Build linux with sbcl docker, for now only x64 #2

Workflow file for this run

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

Check failure on line 19 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 19
with:
image: fukamachi/sbcl
options: -v ${{ github.workspace }}:/work
run: |
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