Skip to content

Commit

Permalink
update from sbcl_bin
Browse files Browse the repository at this point in the history
  • Loading branch information
snmsts committed Sep 10, 2024
1 parent 07cbe8a commit d151d1f
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions .github/workflows/osx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,31 +8,43 @@ on:

jobs:
build:
runs-on: macos-10.15
runs-on: ${{ matrix.target == 'arm64' && 'macos-14' || 'macOS-12' }}
strategy:
fail-fast: false
matrix:
lisp: [sbcl-bin/2.0.0]
target: [x86-64]
lisp: [sbcl-bin/2.3.8]
target: [arm64, x86-64]
environment: SET_VERSION

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: setenv
run: |
echo "$HOME/.roswell/bin" >> $GITHUB_PATH
echo "ROSWELL_BRANCH=release" >> $GITHUB_ENV
echo "ROSWELL_INSTALL_DIR=$HOME/.roswell" >> $GITHUB_ENV
- name: Install Roswell
env:
LISP: ${{ matrix.lisp }}
CFLAGS: -mmacosx-version-min=10.9
CXXFLAGS: -mmacosx-version-min=10.9
LDFLAGS: -mmacosx-version-min=10.9
run: |
brew install automake autoconf
curl -L https://raw.githubusercontent.com/roswell/roswell/master/scripts/install-for-ci.sh | sh
ros install snmsts/sn.github roswell/sbcl_bin
make zstd
bash -c "cd zstd/lib; sudo make PREFIX=/usr/local install-includes install-static clean"
rm -f /usr/local/lib/libzstd*.dylib /opt/homebrew/lib/libzstd*.dylib
- name: build & upload
env:
VERSION: ${{ secrets.VERSION }}
GITHUB_OAUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
ARCH: ${{ matrix.target }}
CFLAGS: -mmacosx-version-min=10.9
CXXFLAGS: -mmacosx-version-min=10.9
LDFLAGS: -mmacosx-version-min=10.9
run: |
make -f Build latest-version compile archive upload-archive;

0 comments on commit d151d1f

Please sign in to comment.