spack/.travis.yml

50 lines
995 B
YAML
Raw Normal View History

2015-11-30 05:40:23 +00:00
language: python
2016-08-22 15:22:42 +00:00
# Construct build matrix
2015-11-30 05:40:23 +00:00
python:
2016-08-22 15:22:42 +00:00
- 2.6
- 2.7
env:
2016-08-22 15:22:42 +00:00
- TEST_SUITE=unit
- TEST_SUITE=flake8
- TEST_SUITE=doc
matrix:
exclude:
2016-08-22 15:22:42 +00:00
- python: 2.6
# Flake8 no longer supports Python 2.6
env: TEST_TYPE=flake8
2015-11-30 05:40:23 +00:00
# Use new Travis infrastructure (Docker can't sudo yet)
sudo: false
2016-08-22 15:22:42 +00:00
# Cache dependencies
cache: pip
# Install various dependencies
install:
2016-08-22 15:22:42 +00:00
- pip install coveralls
- pip install flake8
- pip install sphinx
- pip install mercurial
2015-11-30 05:40:23 +00:00
2016-08-22 15:22:42 +00:00
before_script:
2015-11-30 05:40:23 +00:00
# Need this for the git tests to succeed.
- git config --global user.email "spack@example.com"
- git config --global user.name "Test User"
# Need this to be able to compute the list of changed files
- git fetch origin develop:develop
2015-11-30 05:40:23 +00:00
2016-08-22 15:22:42 +00:00
script: share/spack/qa/run-$TEST_SUITE-tests
after_success:
2016-08-22 15:22:42 +00:00
- if [[ $TEST_SUITE == unit && $TRAVIS_PYTHON_VERSION -eq 2.7 ]]; then coveralls; fi
2015-11-30 05:40:23 +00:00
notifications:
email:
2016-08-22 15:22:42 +00:00
recipients: tgamblin@llnl.gov
2015-11-30 05:40:23 +00:00
on_success: change
on_failure: always