forked from probcomp/Gen.jl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
28 lines (25 loc) · 747 Bytes
/
Copy path.travis.yml
File metadata and controls
28 lines (25 loc) · 747 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
# See http://docs.travis-ci.com/user/languages/julia/ and https://juliadocs.github.io/Documenter.jl/stable/man/hosting/#Hosting-Documentation-1
# See status of Travis builds at https://travis-ci.org/probcomp/Gen
language: julia
julia:
- 1.4
- 1.5
- 1.6
services:
- docker
jobs:
include:
- stage: test
script:
- julia -e 'using Pkg; Pkg.build(); Pkg.test()'
- stage: docker
script:
- docker build docker/ -t gen
- stage: docs
julia: 1.6
os: linux
script:
- julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd()));
Pkg.instantiate()'
- julia --project=docs/ docs/make.jl
after_success: skip