modify build testing dependency installs in Travis settings

pull/291/head
Chris Simpkins 2017-08-26 12:59:39 +07:00
parent 0a5a19e6d4
commit 475efcd41c
1 changed files with 21 additions and 2 deletions

@ -7,6 +7,15 @@ matrix:
sudo: required
env:
- TARGET="lint"
before_script:
- pip install ufolint
- sudo apt-get -qq update
- sudo apt-get install -y shellcheck
script:
- make -j $TARGET
- os: linux
sudo: required
env:
- TARGET="build-with-dependencies"
before_script:
- pip install ufolint
@ -17,7 +26,6 @@ matrix:
- os: osx
env:
- TARGET="lint"
- TARGET="build-with-dependencies"
before_install:
- brew update
- brew install python3
@ -28,7 +36,18 @@ matrix:
- brew install shellcheck
script:
- make -j $TARGET
- os: osx
env:
- TARGET="build-with-dependencies"
before_install:
- brew update
- brew install python3
- brew install pkg-config || brew reinstall pkg-config
- brew link --force pkg-config
- virtualenv env -p python3
- source env/bin/activate
script:
- make -j $TARGET
notifications:
email: false