-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy path.travis.yml
More file actions
32 lines (30 loc) · 792 Bytes
/
.travis.yml
File metadata and controls
32 lines (30 loc) · 792 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
# Documentation: http://docs.travis-ci.com/user/languages/julia/
language: julia
notifications:
email: false
os:
- linux
- osx
julia:
- 1.0
env:
- PYTHON=""
#addons:
# apt_packages:
# - gfortran
script:
#- if [ $TRAVIS_OS_NAME = osx ]; then brew install gcc; fi
#- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
- julia -e 'using Pkg; Pkg.build("Spectra"); Pkg.test("Spectra"; coverage=true)';
jobs:
include:
- stage: "Documentation"
julia: 1.0
os: linux
env:
- PYTHON=""
script:
- julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd()));
Pkg.instantiate(); Pkg.build("Spectra")'
- julia --project=docs/ docs/make.jl
after_success: skip