Skip to content

Commit

Permalink
Test of mac build on github
Browse files Browse the repository at this point in the history
  • Loading branch information
norbusan committed Sep 17, 2024
1 parent a8bfec1 commit 8db05ee
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/mac.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Mac

on: [push]

jobs:
build:

runs-on: ${{ matrix.arch == 'arm64' && 'macos-14' || 'macOS-13' }}
timeout-minutes: 60
strategy:
matrix:
arch: [arm64, x86-64]
fail-fast: false

steps:
- uses: actions/checkout@v1
- name: install host sbcl
run: brew install sbcl
- name: build
run: |
./configure --with-lisp=sbcl --enable-distribution
make
ls
#- name: save binary
# uses: actions/upload-artifact@v4
# with:
# name: sbcl-mac-binary-${{ matrix.arch }}${{ matrix.options }}
# path: sbcl-mac-binary-${{ matrix.arch }}${{ matrix.options }}

0 comments on commit 8db05ee

Please sign in to comment.