forked from tedsteiner/OpenStreetMap.jl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
26 lines (26 loc) · 959 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
language: cpp
compiler:
- clang
notifications:
email: false
env:
matrix:
- JULIAVERSION="juliareleases"
- JULIAVERSION="julianightlies"
before_install:
- sudo add-apt-repository ppa:staticfloat/julia-deps -y
- sudo add-apt-repository ppa:staticfloat/${JULIAVERSION} -y
- sudo apt-get update -qq -y
- sudo apt-get install tcl
- sudo apt-get install tk
- sudo apt-get install julia -y
- sudo apt-get install libXxf86vm-dev # GLFW dependencies
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
script:
- julia -e 'versioninfo(); Pkg.init(); Pkg.clone(pwd())'
- julia -e 'Pkg.test("OpenStreetMap", coverage=true)'
after_success:
- julia -e 'cd(Pkg.dir("OpenStreetMap")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
- julia -e 'cd(Pkg.dir("OpenStreetMap")); using Coverage; Codecov.submit(Codecov.process_folder())'