forked from JuliaTeX/PGFPlots.jl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
23 lines (23 loc) · 803 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
language: julia
sudo: required
dist: trusty
julia:
- 0.6
- nightly
matrix:
allow_failures:
- julia: nightly
notifications:
email: false
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y pdf2svg
- sudo apt-get install -y texlive-latex-base
- sudo apt-get install -y texlive-binaries
- sudo apt-get install -y texlive-pictures
- sudo apt-get install -y texlive-latex-extra
#script: # use the default script section which is equivalent to the following
# - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
# - julia --check-bounds=yes -e 'Pkg.clone(pwd()); Pkg.build("PGFPlots"); Pkg.test("PGFPlots"; coverage=true)'
after_success:
- julia -e 'cd(Pkg.dir("PGFPlots")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'