summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/build.yml6
1 files changed, 5 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 2abc38b..b83f408 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -29,7 +29,11 @@ jobs:
29 shell: bash 29 shell: bash
30 - uses: actions/checkout@v2 30 - uses: actions/checkout@v2
31 - name: autogen 31 - name: autogen
32 run: ./autogen.sh 32 run: |
33 export PATH="$PATH:/Library/Frameworks/Python.framework/Versions/2.7/bin"
34 export LIBS="-L/Library/Frameworks/Python.framework/Versions/2.7/lib"
35 export PYTHON_EXTRA_LDFLAGS="-u _PyMac_Error /System/Library/Frameworks/Python.framework/Versions/2.7/Python"
36 ./autogen.sh
33 - name: make 37 - name: make
34 run: make 38 run: make
35 - name: make check 39 - name: make check