-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy path.travis.yml
49 lines (39 loc) · 1.22 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# These may be useful:
# http://docs.travis-ci.com/user/languages/java/
# http://docs.travis-ci.com/user/build-configuration/#The-Build-Matrix
language: java
jdk:
- oraclejdk7
# We need private-style submodule urls, but they stop travis from being able to checkout
# the submodules. So we disable travis' default functionality, hack the .gitmodules
# in-place, and initialize them manually. For more details, see
# http://docs.travis-ci.com/user/build-configuration/#Git-Submodules
git:
submodules: false
before_install:
- "sed -i 's|git@github.com:|git://github.com/|g' .gitmodules"
- git submodule update --init --recursive
before_script: ./provisioning/travis
script: ./run-tests
env:
matrix:
- PLATFORM=cdh4.1.5
COMPONENT=kiji-schema
- PLATFORM=cdh4.1.5
COMPONENT=kiji-mapreduce
- PLATFORM=cdh4.2.2
COMPONENT=kiji-schema
- PLATFORM=cdh4.2.2
COMPONENT=kiji-mapreduce
- PLATFORM=cdh4.3.2
COMPONENT=kiji-schema
- PLATFORM=cdh4.3.2
COMPONENT=kiji-mapreduce
- PLATFORM=cdh4.4.0
COMPONENT=kiji-schema
- PLATFORM=cdh4.4.0
COMPONENT=kiji-mapreduce
- PLATFORM=cdh4.5.0
COMPONENT=kiji-schema
- PLATFORM=cdh4.5.0
COMPONENT=kiji-mapreduce