-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.old_travis.yml
48 lines (41 loc) · 1.14 KB
/
.old_travis.yml
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
## Documentation: http://docs.travis-ci.com/user/languages/julia/
language: julia
os:
- linux
- osx
- windows
- bsd
julia:
- 1.5
- nightly
notifications:
email: false
sudo: false
git:
depth: 99999999
jobs:
include:
- stage: test
script:
- julia --color=yes --project=. -e 'using Pkg; Pkg.instantiate()'
- julia --color=yes --project=. test/runtests.jl
julia: 1.5
- stage: test
script:
- julia --color=yes --project=. -e 'using Pkg; Pkg.instantiate()'
- julia --color=yes --project=. test/runtests.jl
julia: nightly
- stage: documentation
script:
- julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd()));
Pkg.instantiate()'
- julia --project=docs/ docs/make.jl
after_success: skip
julia: 1.5
- stage: documentation
script:
- julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd()));
Pkg.instantiate()'
- julia --project=docs/ docs/make.jl
after_success: skip
julia: nightly