Skip to content

Commit

Permalink
Add Windows and macOS jobs to lisp kernel build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
xrme authored Mar 24, 2024
1 parent 78caef4 commit bc7e068
Showing 1 changed file with 25 additions and 2 deletions.
27 changes: 25 additions & 2 deletions .github/workflows/lisp-kernel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,33 @@ name: Build lisp kernel
on: workflow_dispatch

jobs:
build:
linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: build
- name: Build for Linux x86-64
run: make
working-directory: lisp-kernel/linuxx8664

windows:
runs-on: windows-latest
defaults:
run:
shell: msys2 {0}
steps:
- uses: msys2/setup-msys2@v2
with:
msystem: MINGW64
install: mingw-w64-x86_64-gcc git m4 make
- uses: actions/checkout@v3
- name: Build for Windows x86-64
run: make
working-directory: lisp-kernel/win64

macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Build for macOS x86-64
run: make
working-directory: lisp-kernel/darwinx8664

0 comments on commit bc7e068

Please sign in to comment.