Add very basic Travis CI support.
This commit is contained in:
parent
b253308eee
commit
45ffcdee7b
23
.travis.yml
Normal file
23
.travis.yml
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
language: python
|
||||||
|
python:
|
||||||
|
- "2.6"
|
||||||
|
- "2.7"
|
||||||
|
|
||||||
|
# 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 test
|
||||||
|
|
||||||
|
notifications:
|
||||||
|
email:
|
||||||
|
recipients:
|
||||||
|
- tgamblin@llnl.gov
|
||||||
|
on_success: change
|
||||||
|
on_failure: always
|
@ -1,6 +1,8 @@
|
|||||||

|

|
||||||
============
|
============
|
||||||
|
|
||||||
|
[](https://travis-ci.org/scalability-llnl/spack)
|
||||||
|
|
||||||
Spack is a package management tool designed to support multiple
|
Spack is a package management tool designed to support multiple
|
||||||
versions and configurations of software on a wide variety of platforms
|
versions and configurations of software on a wide variety of platforms
|
||||||
and environments. It was designed for large supercomputing centers,
|
and environments. It was designed for large supercomputing centers,
|
||||||
|
Loading…
Reference in New Issue
Block a user