Fix dependencies #410
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: Mac | |
on: [push] | |
jobs: | |
build: | |
runs-on: ${{ matrix.arch == 'arm64' && 'macos-14' || 'macOS-13' }} | |
timeout-minutes: 60 | |
strategy: | |
matrix: | |
arch: [arm64] | |
fail-fast: false | |
defaults: | |
run: | |
shell: bash -el {0} | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/checkout@v1 | |
with: | |
repository: sbcl/sbcl | |
ref: ${{ matrix.arch == 'arm64' && 'sbcl-2.4.6' || 'x86-null-tn' }} | |
path: sbcl | |
- uses: conda-incubator/setup-miniconda@v3 | |
with: | |
channels: conda-forge | |
- name: install host sbcl | |
run: brew install sbcl | |
- name: build | |
working-directory: ../sbcl | |
env: | |
SBCL_MAKE_TARGET_2_OPTIONS: --disable-ldb --disable-debugger | |
run: | | |
./make.sh --xc-host='sbcl --lose-on-corruption --disable-ldb --disable-debugger' | |
./make-shared-library.sh | |
echo "SBCL_SRC=${{ github.workspace }}/../sbcl" >> "$GITHUB_ENV" | |
echo "LIBSBCL_PATH=${{ github.workspace }}/../sbcl/src/runtime" >> "$GITHUB_ENV" | |
- name: install quicklisp | |
working-directory: ../sbcl | |
run: | | |
curl -O https://beta.quicklisp.org/quicklisp.lisp | |
./run-sbcl.sh --load quicklisp.lisp --eval "(quicklisp-quickstart:install)" --eval "(ql-util:without-prompting (ql:add-to-init-file))" --eval "(quit)" | |
- name: build and install conda package | |
env: | |
LIBRARY_PATH: ${{ github.workspace }}/../sbcl/src/runtime | |
DYLD_LIBRARY_PATH: ${{ github.workspace }}/../sbcl/src/runtime | |
run: | | |
conda install -y conda-build | |
conda build recipe --output-folder conda-bld | |
conda install -c ${{ github.workspace }}/conda-bld/ sbcl-librarian | |
- name: set environment variables | |
run: | | |
echo "LIBRARY_PATH=$LIBSBCL_PATH:$CONDA_PREFIX/lib" >> "$GITHUB_ENV" | |
echo "DYLD_LIBRARY_PATH=$LIBSBCL_PATH:$CONDA_PREFIX/lib" >> "$GITHUB_ENV" | |
echo "C_INCLUDE_PATH=$CONDA_PREFIX/include" >> "$GITHUB_ENV" | |
- name: build and run example | |
working-directory: examples/libcalc | |
env: | |
CL_SOURCE_REGISTRY: "${{ github.workspace }}//" | |
run: | | |
$SBCL_SRC/run-sbcl.sh --load script.lisp --quit | |
pushd libcalc | |
mkdir build | |
pushd build | |
cmake -DCMAKE_PREFIX_PATH=$CONDA_PREFIX -DCMAKE_INSTALL_PREFIX=$CONDA_PREFIX .. | |
cmake --build . | |
cmake --install . | |
popd | |
popd | |
gcc -Wall -o example example.c -lcalc -lsbcl_librarian | |
echo "(+ 1 2)" | ./example | tr -d '\n' | grep "> 3> " | |
echo "(+ 1 2)" | python ./example.py | tr -d '\n' | grep "> 3> " | |
python ./exhaust_heap.py | grep "returned to Python after heap exhaustion (attempt 1)" |