forked from JuliaGraphics/Gtk.jl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
35 lines (35 loc) · 1.04 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
language: julia
sudo: required
os:
- linux
- osx
julia:
- 0.7
- 1.0
# uncomment the following lines to allow failures on nightly julia
# (tests will run but not make your overall status red)
matrix:
allow_failures:
- julia: 1.0
notifications:
email: false
addons:
apt:
packages:
- xvfb
- xauth
- libgtk-3-dev
script:
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
- if [[ `uname` = "Linux" ]]; then TESTCMD="xvfb-run julia"; else TESTCMD="julia"; fi
- $TESTCMD -e 'using Pkg; Pkg.clone(pwd());
Pkg.build("Gtk");
Pkg.test("Gtk"; coverage=true)'
after_success:
- julia -e 'cd(Pkg.dir("Gtk"));
Pkg.add("Coverage");
using Coverage;
Coveralls.submit(Coveralls.process_folder())'
# update the documentation
- julia -e 'using Pkg; Pkg.add("Documenter"); Pkg.checkout("Documenter")'
- $TESTCMD -e 'using Pkg; cd(Pkg.dir("Gtk")); ENV["DOCUMENTER_DEBUG"] = "true"; include(joinpath("docs", "make.jl"))'