summaryrefslogtreecommitdiffstats
path: root/travis/travis-build.sh
blob: d75ce605fa08ec3beb315a76c23732c25a87941b (plain) (blame)
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
#!/bin/bash
# Copyright Verizon Media. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

set -euo pipefail

export SOURCE_DIR=/source
export NUM_THREADS=6
export MALLOC_ARENA_MAX=1
export MAVEN_OPTS="-Xss1m -Xms128m -Xmx2g"
source /etc/profile.d/enable-devtoolset-9.sh
source /etc/profile.d/enable-rh-maven35.sh

ccache --max-size=1600M
ccache --set-config=compression=true
ccache -p

if ! source /source/travis/detect-what-to-build.sh; then
  SHOULD_BUILD=all
fi

echo "Building $SHOULD_BUILD"

cd ${SOURCE_DIR}

case $SHOULD_BUILD in
  cpp)
    env VESPA_MAVEN_EXTRA_OPTS="--no-snapshot-updates --batch-mode --threads ${NUM_THREADS}" sh ./bootstrap.sh full
    cmake3 -DVESPA_UNPRIVILEGED=no .
    make -j ${NUM_THREADS}
    ctest3 --output-on-failure -j ${NUM_THREADS}
    ccache --show-stats
    ;;
  java)
    env VESPA_MAVEN_EXTRA_OPTS="--no-snapshot-updates --batch-mode --threads ${NUM_THREADS}" sh ./bootstrap.sh java
    mvn -V install --no-snapshot-updates --batch-mode --threads ${NUM_THREADS}
    ;;
  *)
    env VESPA_MAVEN_EXTRA_OPTS="--no-snapshot-updates --batch-mode --threads ${NUM_THREADS}" sh ./bootstrap.sh java
    mvn -V install --no-snapshot-updates --batch-mode --threads ${NUM_THREADS}
    cmake3 -DVESPA_UNPRIVILEGED=no .
    make -j ${NUM_THREADS}
    ctest3 --output-on-failure -j ${NUM_THREADS}
    ccache --show-stats
    make install
    ;;    
esac