We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f45542 commit c25cb7dCopy full SHA for c25cb7d
.jenkins/Jenkinsfile
@@ -112,18 +112,16 @@ pipeline {
112
def BUILD_PROFILE = "${BUILD_TYPE}"
113
def SANITIZE = 'False'
114
115
+ if ("${ALLOC}" == 'libc') {
116
+ PRERELEASE = 'False'
117
+ }
118
if ("${BUILD_TYPE}" == 'sanitize') {
119
SANITIZE = 'True'
120
BUILD_PROFILE = "debug"
121
}
-
- if ("${ALLOC}" == 'libc') {
122
+ if ("${BUILD_TYPE}" == "release") {
123
PRERELEASE = 'False'
- } else {
- if ("${BUILD_TYPE}" == "release") {
124
- PRERELEASE = 'False'
125
- BUILD_PROFILE = "test"
126
- }
+ BUILD_PROFILE = "test"
127
128
129
if (("${env.BRANCH_NAME}" =~ /PR-/) && ("$BUILD_TYPE" == "debug")) {
0 commit comments