forked from apache/mxnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
44 lines (38 loc) · 779 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
40
41
42
43
# Documentation: http://docs.travis-ci.com/user/languages/julia/
sudo: false
language: julia
os:
- linux
- osx
julia:
- 0.4
- 0.5
- nightly
# dependent apt packages
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- doxygen
- wget
- git
- libcurl4-openssl-dev
- unzip
- libatlas-base-dev
- libatlas-dev
- libopencv-dev
- gcc-4.8
- g++-4.8
before_install:
- export TRAVIS=test/travis
- source $TRAVIS/setup_env.sh
notifications:
email: false
script:
- source $TRAVIS/run_test.sh
after_success:
- source $TRAVIS/run_coverage.sh
- echo $TRAVIS_JULIA_VERSION
- julia -e 'Pkg.add("Documenter")'
- julia -e 'cd(Pkg.dir("MXNet")); include(joinpath("docs", "make.jl"))'