forked from ome/bioformats
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
44 lines (37 loc) · 1.14 KB
/
Copy path.travis.yml
File metadata and controls
44 lines (37 loc) · 1.14 KB
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
44
language: java
jdk:
- openjdk7
- oraclejdk7
- openjdk6
python:
- "2.6"
env:
- BUILD=maven
- BUILD=cppwrap
- BUILD=sphinx
before_install:
- sudo add-apt-repository -y "deb http://archive.ubuntu.com/ubuntu/ raring main universe"
- sudo apt-get -qq update
- if [[ $BUILD == 'cppwrap' ]]; then sudo apt-get install -qq build-essential cmake libboost-all-dev; fi
- if [[ $BUILD == 'sphinx' ]]; then sudo apt-get install -qq python-sphinx; fi
- if [[ $BUILD == 'sphinx' ]]; then sudo apt-get -y install texlive-latex-base texlive-latex-recommended texlive-xetex; fi
- if [[ $BUILD == 'sphinx' ]]; then sudo apt-get -y install texlive-latex-extra texlive-fonts-recommended tex-gyre; fi
- if [[ $BUILD == 'sphinx' ]]; then sudo fc-cache -rsfv; fi
install:
- if [[ $BUILD == 'maven' ]]; then mvn install -DskipTests=true; fi
script:
- ./tools/test-build $BUILD
matrix:
exclude:
- jdk: openjdk7
python: "2.6"
env: BUILD=sphinx
- jdk: oraclejdk7
python: "2.6"
env: BUILD=sphinx
- jdk: openjdk7
python: "2.6"
env: BUILD=cppwrap
- jdk: oraclejdk7
python: "2.6"
env: BUILD=cppwrap