forked from spack/spack-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
34 lines (27 loc) · 771 Bytes
/
.travis.yml
File metadata and controls
34 lines (27 loc) · 771 Bytes
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
30
31
32
33
34
#=============================================================================
# Project settings
#=============================================================================
# Only build master and develop on push; do not build every branch.
pull_requests:
except:
- no-ci/*
#=============================================================================
# Builds
#=============================================================================
jobs:
include:
- python: '3.7'
os: linux
language: python
# Need dot to build
addons:
apt:
packages:
- graphviz
# Install various dependencies
install:
- pip install --upgrade pip
- pip install --upgrade -r requirements.txt
script:
- make clean --silent
- make SPHINXOPTS=-W