summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2017-09-16 21:23:35 -0400
committerJeffrey Walton <noloader@gmail.com>2017-09-16 21:23:35 -0400
commitf3c04dbcb7cfe0122fa8158cd6ed8c9942cd44b9 (patch)
tree9f1e5ba521ff2af729c1f10cb65b2f529d2f0842 /.travis.yml
parent913a9e60d375e4581d4eca7078f0786327afa258 (diff)
downloadcryptopp-git-f3c04dbcb7cfe0122fa8158cd6ed8c9942cd44b9.tar.gz
Remove CMake testing support (GH #506)
CMake can now be found at http://www.cryptopp.com/wiki/CMake. The Cmake project files are now maintianed by the community.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml21
1 files changed, 6 insertions, 15 deletions
diff --git a/.travis.yml b/.travis.yml
index 661b9c28..2b0b61a8 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -32,7 +32,6 @@ env:
- BUILD_MODE="ios-arm64"
- BUILD_MODE="ios-watch"
- BUILD_MODE="ios-tv"
- - BUILD_MODE="cmake"
matrix:
@@ -67,33 +66,25 @@ script:
if [[ "$BUILD_MODE" == "ios-arm" ]]; then
cp ./TestScripts/setenv-ios.sh .
. ./setenv-ios.sh arm
- make -f GNUmakefile-cross
+ make -f GNUmakefile-cross -j "$BUILD_JOBS"
elif [[ "$BUILD_MODE" == "ios-arm64" ]]; then
cp ./TestScripts/setenv-ios.sh .
- . ./setenv-ios.sh arm64
+ . ./setenv-ios.sh arm64 -j "$BUILD_JOBS"
make -f GNUmakefile-cross
elif [[ "$BUILD_MODE" == "ios-watch" ]]; then
cp ./TestScripts/setenv-ios.sh .
. ./setenv-ios.sh watch
- make -f GNUmakefile-cross
+ make -f GNUmakefile-cross -j "$BUILD_JOBS"
elif [[ "$BUILD_MODE" == "ios-tv" ]]; then
cp ./TestScripts/setenv-ios.sh .
. ./setenv-ios.sh tv
- make -f GNUmakefile-cross
+ make -f GNUmakefile-cross -j "$BUILD_JOBS"
elif [[ "$BUILD_MODE" == "debug" ]]; then
- CXXFLAGS="-DDEBUG -g2 -O1" make
- ./cryptest.exe v
- ./cryptest.exe tv all
- elif [[ "$BUILD_MODE" == "cmake" ]]; then
- CRYPTOPP_DIR=$(pwd)
- mkdir cryptopp-build
- cd cryptopp-build
- cmake $CRYPTOPP_DIR
- make -j 4 VERBOSE=1
+ CXXFLAGS="-DDEBUG -g2 -O1" make -j "$BUILD_JOBS"
./cryptest.exe v
./cryptest.exe tv all
else
- make "$BUILD_MODE"
+ make "$BUILD_MODE" -j "$BUILD_JOBS"
./cryptest.exe v
./cryptest.exe tv all
fi