Skip to content

Commit 44b3e5f

Browse files
committed
c++sdk: use nicer name for nightly builds
1 parent f3aa6c9 commit 44b3e5f

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

cxx/cxx-scripted-build-pipeline.groovy

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,15 @@ def checkout() {
3636

3737
stage("prepare and validate") {
3838
node("sdkqe-$COMBINATION_PLATFORM") {
39+
script {
40+
buildName([
41+
BUILD_NUMBER,
42+
PR_ID == "" ? null : "pr${PR_ID}",
43+
// STORAGE_BACKEND,
44+
USE_TLS ? "tls" : null,
45+
USE_CERT_AUTH ? "cert" : null,
46+
].findAll { it != null }.join("-"))
47+
}
3948
cleanWs()
4049
checkout()
4150

0 commit comments

Comments
 (0)