diff options
author | Gregory Becker <becker33@llnl.gov> | 2016-04-27 19:38:51 -0700 |
---|---|---|
committer | Gregory Becker <becker33@llnl.gov> | 2016-04-27 19:38:51 -0700 |
commit | ae5198e5e765c64fea666753905f5162f2300181 (patch) | |
tree | 7d58b63d19128edeaa6cc2f6fe915f11a5690471 /.travis.yml | |
parent | 8e54babf104985a8db0df3fbb2f3d0f134342571 (diff) | |
parent | dd84a575807636159d80809f59962cf799b83fd7 (diff) | |
download | spack-ae5198e5e765c64fea666753905f5162f2300181.tar.gz spack-ae5198e5e765c64fea666753905f5162f2300181.tar.bz2 spack-ae5198e5e765c64fea666753905f5162f2300181.tar.xz spack-ae5198e5e765c64fea666753905f5162f2300181.zip |
Merged in current develop to cflags 042716
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000000..1bed6b0874 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,29 @@ +language: python +python: + - "2.6" + - "2.7" + +# Use new Travis infrastructure (Docker can't sudo yet) +sudo: false + +# No need to install any deps. +install: true + +before_install: + # Need this for the git tests to succeed. + - git config --global user.email "spack@example.com" + - git config --global user.name "Test User" + +script: + - . share/spack/setup-env.sh + - spack compilers + - spack config get compilers + - spack test + - spack install -v libdwarf + +notifications: + email: + recipients: + - tgamblin@llnl.gov + on_success: change + on_failure: always |