From 8db05eecb70267439d2bb07f494577a348b517cd Mon Sep 17 00:00:00 2001 From: Norbert Preining Date: Tue, 17 Sep 2024 11:22:28 +0900 Subject: [PATCH] Test of mac build on github --- .github/workflows/mac.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/mac.yml diff --git a/.github/workflows/mac.yml b/.github/workflows/mac.yml new file mode 100644 index 0000000..506a126 --- /dev/null +++ b/.github/workflows/mac.yml @@ -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 }}