-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
.travis.yml
executable file
·42 lines (33 loc) · 1.31 KB
/
.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
language: julia
os: linux
julia:
- 1.3
- 1.4
- nightly
notifications:
email: false
sudo: required
install:
- sudo apt-get install -y -qq hdf5-tools
script:
- julia -e 'using Pkg; Pkg.develop(PackageSpec(name="BigArrays", url="https://github.com/seung-lab/BigArrays.jl.git"))'
- julia -e 'using Pkg; Pkg.test("RealNeuralNetworks", coverage=true)'
- julia -e 'using Pkg; Pkg.add("Documenter"); cd(Pkg.dir("RealNeuralNetworks")); include(joinpath("docs", "make.jl"))'
#jobs:
# include:
# - stage: "Documentation"
# julia: 1.0
# os: linux
# script:
# - julia -e 'import Pkg; Pkg.clone("https://github.com/seung-lab/BigArrays.jl.git")'
# - julia -e 'import Pkg; Pkg.clone(pwd()); Pkg.test("RealNeuralNetworks")'
# - julia -e 'import Pkg; Pkg.add("Documenter")'
# - julia --project=docs/ -e 'using Pkg; Pkg.instantiate(); Pkg.develop(PackageSpec(path=pwd()))'
# - julia --project=docs/ docs/make.jl
# after_success: skip
matrix:
allow_failures:
- julia: nightly
after_success:
# push coverage results to Coveralls
- julia -e 'import Pkg; cd(Pkg.dir("RealNeuralNetworks")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'