Darwin #1302
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: osx | |
on: | |
schedule: | |
- cron: '0 1 * * *' | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ${{ matrix.target == 'arm64' && 'macos-14' || 'macOS-12' }} | |
strategy: | |
fail-fast: false | |
matrix: | |
lisp: [sbcl-bin/2.3.8] | |
target: [arm64, x86-64] | |
environment: SET_VERSION | |
steps: | |
- uses: actions/checkout@v4 | |
- name: setenv | |
run: | | |
echo "$HOME/.roswell/bin" >> $GITHUB_PATH | |
echo "ROSWELL_BRANCH=master" >> $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 | |
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: | | |
if [ "$VERSION" = "" ]; then | |
make latest-version compile archive upload-archive; | |
else | |
make compile archive upload-archive; | |
fi |