forked from apache/hive
-
Notifications
You must be signed in to change notification settings - Fork 4
/
.travis.yml
62 lines (53 loc) · 2.9 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
50
51
52
53
54
55
56
57
58
59
60
61
62
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# https://docs.travis-ci.com/user/ci-environment/
# trusty - 7.5GB memory and 2 cores
sudo: required
dist: trusty
# travis performs a shallow clone by default, in case of any issues
# that requires full git history, enable this
# before_install: git fetch --unshallow
# parallel builds on jdk7 and jdk8
language: java
jdk:
- oraclejdk8
cache:
directories:
- $HOME/.m2
env:
MAVEN_SKIP_RC=true
MAVEN_OPTS="-Xmx2g"
# workaround added: https://github.com/travis-ci/travis-ci/issues/4629
before_install:
- |
if [[ ! -e $HOME/.thrift/bin/thrift ]]; then
sudo apt-get install libboost-dev libboost-test-dev libboost-program-options-dev libboost-filesystem-dev libboost-thread-dev libevent-dev automake libtool flex bison pkg-config g++ libssl-dev
wget https://www.apache.org/dist/thrift/0.9.3/thrift-0.9.3.tar.gz
tar xfz thrift-0.9.3.tar.gz
cd thrift-0.9.3 && ./configure --without-cpp --without-c_glib --without-python --without-ruby --without-php --without-erlang --without-go --without-nodejs -q --prefix=$HOME/.thrift
sudo make install > thrift_make_install.log
cd ..
fi
- |
if [[ ! -e /usr/local/bin/thrift ]]; then
sudo ln -s $HOME/.thrift/bin/thrift /usr/local/bin/thrift
fi
- sed -i.bak -e 's|https://nexus.codehaus.org/snapshots/|https://oss.sonatype.org/content/repositories/codehaus-snapshots/|g' ~/.m2/settings.xml
install: true
script: mvn clean install -DskipTests -q -Pitests
notifications:
slack:
secure: j+L1kWY0z46XhwHJbR0myuB6pcPh+4AS7b0sJ3oaY2WO0aaA1Y+CTuiRSipnatjcqqqw8GVBOzFRm++7YUuw2K5GTYQykj6+uLCvE3JOtfmzYv71NbbvVZOhuH3aZ6iw8WbF3+bnHNS9/LEqaCmDx8LPsDCVdQdUjhf5sk9ysiQhPvN4KIWWr9RCuJc2tPGYilR0/0z5k/IYg0NeGtZkLZw4t4avGPZb6MLBx4RVJP3eK0N7NqmDQAcZzGj37NReVZsgLf2uEtIKE7KyABhmpDWCuyDnAMNXx94cu5Zf3s1l/mxFmMljSc3G26xTV+5q0blngKfD8ZE+tUtswBNQ75P5xFMgWSK9REHxwk/1twKzPK91dO/y+5cv7Blk8SYegl2qq/UFYlWyJoZuTlkxp4uFnqiloGh66P6y0dTFBNaNWL9FLzD7K+Keb2SrkD+u/rAD69COO6XT2TJu5Z2HRgO5fW14CC2W/oXhFKKfuyrBFDwZW4Q/oJboN8uOpXQRYd+4TVFVQrhZJMIYInMAGD5BkPNJ5T2eCEmi3hZeo0zZqgUf+d2fW1R5ajwAP+LqqBoqjD3dSq1msAftO/pyutXtaMorqFM8PkiuVkcVqLt6Gn8mqWSoIxaJXnxr7AVnVPawikRDQwlvDPOBr69aAThOgObyvepuh3PKnn/9dnE=