diff options
| author | Charles Cabergs <me@cacharle.xyz> | 2021-02-24 08:20:57 +0100 |
|---|---|---|
| committer | Charles Cabergs <me@cacharle.xyz> | 2021-02-24 08:20:57 +0100 |
| commit | 1399a01dc09ed1477b740bd320580ce3dacfe3cf (patch) | |
| tree | 1001ac2adc13859b021646d7b81dbc9ac41cf8d8 /.travis.yml | |
| parent | e2237933447acd5e3910116da1a66c77fe6b29c3 (diff) | |
| download | minishell_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.yml | 10 |
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 . |
