aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorCharles Cabergs <me@cacharle.xyz>2021-02-24 08:20:57 +0100
committerCharles Cabergs <me@cacharle.xyz>2021-02-24 08:20:57 +0100
commit1399a01dc09ed1477b740bd320580ce3dacfe3cf (patch)
tree1001ac2adc13859b021646d7b81dbc9ac41cf8d8 /.travis.yml
parente2237933447acd5e3910116da1a66c77fe6b29c3 (diff)
downloadminishell_test-1399a01dc09ed1477b740bd320580ce3dacfe3cf.tar.gz
minishell_test-1399a01dc09ed1477b740bd320580ce3dacfe3cf.tar.bz2
minishell_test-1399a01dc09ed1477b740bd320580ce3dacfe3cf.zip
Updated .travis-ci.yml, disabling osx build
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml10
1 files 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 .