mirror of
https://github.com/kovidgoyal/kitty
synced 2026-07-27 18:51:41 +02:00
Try and figure out why linking against python is failing on OS X Travis
This commit is contained in:
@@ -47,9 +47,10 @@ matrix:
|
||||
|
||||
install: |
|
||||
if [[ "$RUN_FLAKE" == "1" ]]; then pip install flake8; fi
|
||||
if [[ $TRAVIS_OS_NAME == 'osx' ]]; then
|
||||
if [[ "$TRAVIS_OS_NAME" == 'osx' ]]; then
|
||||
python3 -m venv venv;
|
||||
source venv/bin/activate;
|
||||
python3 -m sysconfig
|
||||
else
|
||||
wget -O glfw-3.2.1.zip https://github.com/glfw/glfw/archive/3.2.1.zip
|
||||
unzip glfw-3.2.1.zip
|
||||
@@ -67,11 +68,7 @@ env:
|
||||
- LD_LIBRARY_PATH=$HOME/glfw/lib
|
||||
- ASAN_OPTIONS=leak_check_at_exit=0
|
||||
before_script:
|
||||
- if [[ $TRAVIS_OS_NAME == 'osx' ]]; then
|
||||
python setup.py build;
|
||||
else
|
||||
python setup.py build --debug $ASAN_ARG;
|
||||
fi
|
||||
- python setup.py build --debug $ASAN_ARG;
|
||||
script:
|
||||
- LD_PRELOAD=$ASANLIB python setup.py test
|
||||
- if [[ "$RUN_FLAKE" == "1" ]]; then flake8 --count .; fi
|
||||
|
||||
Reference in New Issue
Block a user