From 57952781febbd08deedffb9ff4824ebd989f1ed7 Mon Sep 17 00:00:00 2001 From: SANO Masatoshi Date: Sun, 11 Jul 2021 22:30:19 +0900 Subject: [PATCH] try build binary for osx --- .github/workflows/osx.yml | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .github/workflows/osx.yml diff --git a/.github/workflows/osx.yml b/.github/workflows/osx.yml new file mode 100644 index 0000000..2ff6498 --- /dev/null +++ b/.github/workflows/osx.yml @@ -0,0 +1,34 @@ +name: osx + +on: + push: + workflow_dispatch: + +jobs: + build: + runs-on: macos-10.15 + strategy: + matrix: + lisp: [sbcl-bin/2.0.0] + target: [x86-64] + environment: SET_VERSION + + steps: + - uses: actions/checkout@v2 + - name: checkenv + run: | + uname -s + uname -m + - name: Build + run: | + gcc -v + ./bootstrap + ./configure + make + make install + make pack + - name: Upload + env: + GITHUB_OAUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + run: | + make -f scripts/Makefile latest-version musl-upload