summaryrefslogtreecommitdiffstats
path: root/travis/travis-build-cpp.sh
diff options
context:
space:
mode:
Diffstat (limited to 'travis/travis-build-cpp.sh')
-rwxr-xr-xtravis/travis-build-cpp.sh20
1 files changed, 0 insertions, 20 deletions
diff --git a/travis/travis-build-cpp.sh b/travis/travis-build-cpp.sh
deleted file mode 100755
index 07b3c90e718..00000000000
--- a/travis/travis-build-cpp.sh
+++ /dev/null
@@ -1,20 +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
-
-source /source/travis/prelude.sh
-source ${SOURCE_DIR}/travis/cpp-prelude.sh
-
-BUILD_DIR=~/build
-mkdir "${BUILD_DIR}"
-
-cd ${SOURCE_DIR}
-./bootstrap.sh java
-mvn install --no-snapshot-updates --batch-mode --threads ${NUM_THREADS} \
- -Dmaven.test.skip=true -Dmaven.javadoc.skip=true -Dmaven.source.skip=true
-cd ${BUILD_DIR}
-bash ${SOURCE_DIR}/bootstrap-cmake.sh ${SOURCE_DIR}
-make -j ${NUM_THREADS}
-make install
-ctest3 --output-on-failure -j ${NUM_THREADS}
-ccache --show-stats