From 1399a01dc09ed1477b740bd320580ce3dacfe3cf Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Wed, 24 Feb 2021 08:20:57 +0100 Subject: Updated .travis-ci.yml, disabling osx build --- .travis.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 0fb4c0e..ae3fa12 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,7 +2,9 @@ language: python os: - linux - - osx + # disabled since travis CI doesn't support python build on OSX and Window + # (https://docs.travis-ci.com/user/languages/python/) + # - osx python: - "3.6" @@ -15,9 +17,9 @@ addons: packages: - valgrind -before_install: - - if [ "$TRAVIS_OS_NAME" = "osx" ]; then brew update ; fi - - if [ "$TRAVIS_OS_NAME" = "osx" ]; then brew install valgrind; fi +# before_install: +# - [ "$TRAVIS_OS_NAME" = "osx" ] && brew update +# - [ "$TRAVIS_OS_NAME" = "osx" ] && brew install valgrind install: - pip install -e . -- cgit