Skip to content

Commit 45ffcde

Browse files
committed
Add very basic Travis CI support.
1 parent b253308 commit 45ffcde

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed

.travis.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
language: python
2+
python:
3+
- "2.6"
4+
- "2.7"
5+
6+
# No need to install any deps.
7+
install: true
8+
9+
before_install:
10+
# Need this for the git tests to succeed.
11+
- git config --global user.email "spack@example.com"
12+
- git config --global user.name "Test User"
13+
14+
script:
15+
- . share/spack/setup-env.sh
16+
- spack test
17+
18+
notifications:
19+
email:
20+
recipients:
21+
- tgamblin@llnl.gov
22+
on_success: change
23+
on_failure: always

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
![image](share/spack/logo/spack-logo-text-64.png "Spack")
22
============
33

4+
[![Build Status](https://travis-ci.org/scalability-llnl/spack.png?branch=develop)](https://travis-ci.org/scalability-llnl/spack)
5+
46
Spack is a package management tool designed to support multiple
57
versions and configurations of software on a wide variety of platforms
68
and environments. It was designed for large supercomputing centers,

0 commit comments

Comments
 (0)