summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 1bed6b087407bef0c3a5e6810852b96156fd6445 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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