Skip to content

Install gnu-tar in github action #2

Install gnu-tar in github action

Install gnu-tar in github action #2

Workflow file for this run

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 gnu-tar
- 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 }}