Some changes

This commit is contained in:
WolverinDEV 2019-01-22 21:07:36 +01:00
parent 82aab68944
commit 81131f71b6
4 changed files with 39 additions and 2 deletions

17
Jenkinsfile vendored
View File

@ -47,6 +47,10 @@ pipeline {
when { when {
expression { params.build_libraries } expression { params.build_libraries }
} }
environment {
CMAKE_BUILD_TYPE="Debug"
}
steps { steps {
sh 'cd libraries; ./build.sh' sh 'cd libraries; ./build.sh'
@ -60,6 +64,9 @@ pipeline {
environment { environment {
TEASPEAK_BUILD_TYPE="Debug" TEASPEAK_BUILD_TYPE="Debug"
} }
environment {
CMAKE_BUILD_TYPE="Debug"
}
stages { stages {
stage ('build::x86::debug::build') { stage ('build::x86::debug::build') {
@ -103,6 +110,10 @@ pipeline {
when { when {
expression { params.build_libraries } expression { params.build_libraries }
} }
environment {
CMAKE_BUILD_TYPE="Debug"
}
steps { steps {
sh 'cd libraries; ./build.sh' sh 'cd libraries; ./build.sh'
@ -114,6 +125,7 @@ pipeline {
stage ('build::amd64::debug::build') { stage ('build::amd64::debug::build') {
environment { environment {
TEASPEAK_BUILD_TYPE="Debug" TEASPEAK_BUILD_TYPE="Debug"
CMAKE_BUILD_TYPE=Debug
} }
steps { steps {
@ -157,6 +169,10 @@ pipeline {
when { when {
expression { params.build_libraries } expression { params.build_libraries }
} }
environment {
CMAKE_BUILD_TYPE="RelWithDebInfo"
}
steps { steps {
sh 'cd libraries; ./build.sh' sh 'cd libraries; ./build.sh'
@ -168,6 +184,7 @@ pipeline {
stage ('build::amd64::release::build') { stage ('build::amd64::release::build') {
environment { environment {
TEASPEAK_BUILD_TYPE="Release" TEASPEAK_BUILD_TYPE="Release"
CMAKE_BUILD_TYPE="RelWithDebInfo"
} }
steps { steps {

@ -1 +1 @@
Subproject commit 206a1fd8337099f6c51c3f4bb61d8a71f407d2f7 Subproject commit 2c9b128dfca34119d7898431af8a1e2c1e296b89

20
build_info.txt Normal file
View File

@ -0,0 +1,20 @@
Improved (Fixed):
Tomcrypt
Tommath
Boringssl
DataPipes:
-DCMAKE_BUILD_TYPE="${CMAKE_BUILD_TYPE}"
Libraries:
-DCMAKE_BUILD_TYPE="${CMAKE_BUILD_TYPE:-Release}"
StringVariables:
ThreadPool
-DCMAKE_BUILD_TYPE="${CMAKE_BUILD_TYPE}"
ED255:
EVENT:
JSONCPP:
MYSQLCONNECTOR:
PROTOBUF:
-DCMAKE_BUILD_TYPE=RelWithDebInfo

@ -1 +1 @@
Subproject commit a8fd0a621ff7ac522e4278dd97bf805557b5fe4d Subproject commit f44d650b257b3caf242c835447fed7eb6577cc13