Skip to content

Instantly share code, notes, and snippets.

@cancan101
Created March 24, 2015 05:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cancan101/ba68a80c0a0624ba41f5 to your computer and use it in GitHub Desktop.
Save cancan101/ba68a80c0a0624ba41f5 to your computer and use it in GitHub Desktop.
travis yaml
sudo: true
language: python
cache:
directories:
- $HOME/.cache/pip
python:
- '2.7'
env:
- SERVICE=s1
- SERVICE=s2
- SERVICE=s3
- SERVICE=s4
before_install:
- export D=$TRAVIS_BUILD_DIR/services/$SERVICE
- cd $D
- bash ./.travis-before_install.sh
install:
- cd $D
- bash ./.travis-install.sh
before_script:
- cd $D
- bash ./.travis-before_script.sh
script:
- cd $D
- bash ./.travis-script.sh
notifications:
slack:
secure: XXXXXX
addons:
hosts:
- h1
- h2
- h3
- h4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment