summaryrefslogtreecommitdiffstats
path: root/travis/travis-build-java.sh
blob: 7e0088586a47e58e4027dd739bec34f9c8b2b2e1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash
# Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
set -e

SOURCE_DIR=/source
NUM_THREADS=4

cd "${SOURCE_DIR}"
source /opt/rh/devtoolset-6/enable || true
export MAVEN_OPTS="-Xms128m -Xmx512m"
sh ./bootstrap.sh java
mvn install -nsu -B -T ${NUM_THREADS} -V # Should ideally split out test phase, but some unit tests fails on 'mvn test'