* All Linux tests are now in Jenkins CI * Tests are now de-coupled from builds. We can now build XGBoost with one version of CUDA/JDK and test it with another version of CUDA/JDK * Builds (compilation) are significantly faster because 1) They use C5 instances with faster CPU cores; and 2) build environment setup is cached using Docker containers
21 lines
443 B
Bash
Executable File
21 lines
443 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
# Build gtest via cmake
|
|
rm -rf gtest
|
|
wget -nc https://github.com/google/googletest/archive/release-1.7.0.zip
|
|
unzip -n release-1.7.0.zip
|
|
mv googletest-release-1.7.0 gtest && cd gtest
|
|
cmake . && make
|
|
mkdir lib && mv libgtest.a lib
|
|
cd ..
|
|
rm -rf release-1.7.0.zip*
|
|
|
|
rm -rf build
|
|
mkdir build
|
|
cd build
|
|
cmake .. "$@" -DGOOGLE_TEST=ON -DGTEST_ROOT=$PWD/../gtest -DCMAKE_VERBOSE_MAKEFILE=ON
|
|
make clean
|
|
make -j$(nproc)
|
|
cd ..
|