Skip to content

Commit

Permalink
First show at windows workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
norbusan committed Sep 17, 2024
1 parent 5fe555c commit 0802b4c
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
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

0 comments on commit 0802b4c

Please sign in to comment.