Skip to content

First show at windows workflow #1

First show at windows workflow

First show at windows workflow #1

Workflow file for this run

name: Windows
on: [push]
jobs:
build:
runs-on: windows-latest
defaults:
run:
shell: msys2 {0}
steps:
- uses: actions/checkout@v1
- uses: msys2/setup-msys2@v2
with:
install: make
- name: install host sbcl
shell: pwsh
run: |
choco install sbcl
- name: build
run: |
PATH=$PATH:"/c/Program Files (x86)/Steel Bank Common Lisp"
export PATH
./configure --with-lisp=sbcl --enable-distribution
make
ls