Some changes
This commit is contained in:
Vendored
+17
@@ -47,6 +47,10 @@ pipeline {
|
||||
when {
|
||||
expression { params.build_libraries }
|
||||
}
|
||||
|
||||
environment {
|
||||
CMAKE_BUILD_TYPE="Debug"
|
||||
}
|
||||
|
||||
steps {
|
||||
sh 'cd libraries; ./build.sh'
|
||||
@@ -60,6 +64,9 @@ pipeline {
|
||||
environment {
|
||||
TEASPEAK_BUILD_TYPE="Debug"
|
||||
}
|
||||
environment {
|
||||
CMAKE_BUILD_TYPE="Debug"
|
||||
}
|
||||
|
||||
stages {
|
||||
stage ('build::x86::debug::build') {
|
||||
@@ -103,6 +110,10 @@ pipeline {
|
||||
when {
|
||||
expression { params.build_libraries }
|
||||
}
|
||||
|
||||
environment {
|
||||
CMAKE_BUILD_TYPE="Debug"
|
||||
}
|
||||
|
||||
steps {
|
||||
sh 'cd libraries; ./build.sh'
|
||||
@@ -114,6 +125,7 @@ pipeline {
|
||||
stage ('build::amd64::debug::build') {
|
||||
environment {
|
||||
TEASPEAK_BUILD_TYPE="Debug"
|
||||
CMAKE_BUILD_TYPE=Debug
|
||||
}
|
||||
|
||||
steps {
|
||||
@@ -157,6 +169,10 @@ pipeline {
|
||||
when {
|
||||
expression { params.build_libraries }
|
||||
}
|
||||
|
||||
environment {
|
||||
CMAKE_BUILD_TYPE="RelWithDebInfo"
|
||||
}
|
||||
|
||||
steps {
|
||||
sh 'cd libraries; ./build.sh'
|
||||
@@ -168,6 +184,7 @@ pipeline {
|
||||
stage ('build::amd64::release::build') {
|
||||
environment {
|
||||
TEASPEAK_BUILD_TYPE="Release"
|
||||
CMAKE_BUILD_TYPE="RelWithDebInfo"
|
||||
}
|
||||
|
||||
steps {
|
||||
|
||||
+1
-1
Submodule TeaSpeak updated: 206a1fd833...2c9b128dfc
@@ -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
Submodule libraries/DataPipes updated: a8fd0a621f...f44d650b25
Reference in New Issue
Block a user