forked from ReactiveBayes/Rocket.jl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
39 lines (34 loc) · 864 Bytes
/
.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
language: julia
os:
- linux
notifications:
email: false
julia:
- 1.3
- 1.4
- 1.5
- nightly
jobs:
allow_failures:
- julia: nightly
include:
- stage: test
script:
- julia -e 'import Pkg; Pkg.test("Rocket")'
after_success: skip
- stage: coverage
julia: 1.5
script:
- julia -e 'import Pkg; Pkg.test("Rocket", coverage=true, julia_args=["--inline=no"])';
- julia -e 'import Pkg; cd(Pkg.dir("Rocket")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
after_success: skip
- stage: documentation
julia: 1.5
script:
- julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
- julia --project=docs/ docs/make.jl
after_success: skip
stages:
- test
- coverage
- documentation