Commit ced16994 authored by Nikias Bassen's avatar Nikias Bassen

[github-actions] macOS: Fix build with cython

parent af9b59e6
......@@ -29,7 +29,11 @@ jobs:
shell: bash
- uses: actions/checkout@v2
- name: autogen
run: ./autogen.sh
run: |
export PATH="$PATH:/Library/Frameworks/Python.framework/Versions/2.7/bin"
export LIBS="-L/Library/Frameworks/Python.framework/Versions/2.7/lib"
export PYTHON_EXTRA_LDFLAGS="-u _PyMac_Error /System/Library/Frameworks/Python.framework/Versions/2.7/Python"
./autogen.sh
- name: make
run: make
- name: make check
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment