Skip to content

Commit 4f7d547

Browse files
marmbruspwendell
authored andcommitted
Initial experimentation with Travis CI configuration
This is not intended to replace Jenkins immediately, and Jenkins will remain the CI of reference for merging pull requests in the near term. Long term, it is possible that Travis will give us better integration with github, so we are investigating its use. Author: Michael Armbrust <michael@databricks.com> Closes #230 from marmbrus/travis and squashes the following commits: 93f9a32 [Michael Armbrust] Add Apache license to .travis.yml d7c0e78 [Michael Armbrust] Initial experimentation with Travis CI configuration
1 parent 8237df8 commit 4f7d547

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

.travis.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one or more
2+
# contributor license agreements. See the NOTICE file distributed with
3+
# this work for additional information regarding copyright ownership.
4+
# The ASF licenses this file to You under the Apache License, Version 2.0
5+
# (the "License"); you may not use this file except in compliance with
6+
# the License. You may obtain a copy of the License at
7+
#
8+
# http://www.apache.org/licenses/LICENSE-2.0
9+
#
10+
# Unless required by applicable law or agreed to in writing, software
11+
# distributed under the License is distributed on an "AS IS" BASIS,
12+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
# See the License for the specific language governing permissions and
14+
# limitations under the License.
15+
16+
language: scala
17+
scala:
18+
- "2.10.3"
19+
jdk:
20+
- oraclejdk7
21+
env:
22+
matrix:
23+
- TEST=sql/test
24+
- TEST=hive/test
25+
- TEST=catalyst/test
26+
- TEST=streaming/test
27+
- TEST=graphx/test
28+
- TEST=mllib/test
29+
- TEST=graphx/test
30+
- TEST=bagel/test
31+
cache:
32+
directories:
33+
- $HOME/.m2
34+
- $HOME/.ivy2
35+
- $HOME/.sbt
36+
script:
37+
- "sbt ++$TRAVIS_SCALA_VERSION scalastyle $TEST"

0 commit comments

Comments
 (0)