ENH: move travis support scripts to .travis_scripts

Move the build support scripts for travis to a hidden
subdirectory to keep the top level directory more
clean.
This commit is contained in:
Hans Johnson 2019-01-12 08:54:50 -06:00 committed by Hans Johnson
parent fa61a49b83
commit 10a1a38b37
6 changed files with 7 additions and 10 deletions

View File

@ -9,7 +9,9 @@ language: cpp
sudo: false sudo: false
addons: addons:
homebrew: homebrew:
packages: meson ninja packages:
- meson
- ninja
update: false # do not update homebrew by default update: false # do not update homebrew by default
apt: apt:
sources: sources:
@ -27,12 +29,7 @@ matrix:
- os: osx - os: osx
osx_image: xcode9.4 osx_image: xcode9.4
compiler: clang compiler: clang
addons: env: LIB_TYPE=static BUILD_TYPE=release
homebrew:
packages: meson ninja
#env: PYENV_ROOT=/usr/local/var/pyenv
env: LIB_TYPE=static BUILD_TYPE=release HOMEBREW_LOGS=~/homebrew-logs HOMEBREW_TEMP=~/homebrew-temp
#- LIB_TYPE=shared BUILD_TYPE=debug
- os: linux - os: linux
dist: trusty dist: trusty
compiler: clang compiler: clang
@ -41,7 +38,7 @@ notifications:
email: false email: false
before_install: before_install:
- source ./travis.before_install.${TRAVIS_OS_NAME}.sh - source ./.travis_scripts/travis.before_install.${TRAVIS_OS_NAME}.sh
install: install:
- source ./travis.install.${TRAVIS_OS_NAME}.sh - source ./.travis_scripts/travis.install.${TRAVIS_OS_NAME}.sh
script: ./travis.sh script: ./.travis_scripts/travis.sh