summaryrefslogtreecommitdiffstats
path: root/travis/travis-build-full.sh
diff options
context:
space:
mode:
Diffstat (limited to 'travis/travis-build-full.sh')
-rwxr-xr-xtravis/travis-build-full.sh23
1 files changed, 0 insertions, 23 deletions
diff --git a/travis/travis-build-full.sh b/travis/travis-build-full.sh
deleted file mode 100755
index 46268a964c2..00000000000
--- a/travis/travis-build-full.sh
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/bin/bash
-# Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-set -e
-
-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
-
-cd ${SOURCE_DIR}
-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