11#! /usr/bin/env groovy
22
3- 3+ 44
55/* Object to store public URLs for description. */
66urls = [:]
@@ -28,7 +28,7 @@ pipeline {
2828 artifactNumToKeepStr : ' 10' ,
2929 ))
3030 /* Allows combined build to copy */
31- copyArtifactPermission(' /status-desktop /*' )
31+ copyArtifactPermission(' /status-app /*' )
3232 }
3333
3434 parameters {
@@ -53,7 +53,7 @@ pipeline {
5353 steps {
5454 script {
5555 linux_x86_64 = getArtifacts(
56- ' Linux' , jenkins.Build (' status-desktop /systems/linux/x86_64/package' )
56+ ' Linux' , jenkins.Build (' status-app /systems/linux/x86_64/package' )
5757 )
5858 }
5959 }
@@ -62,7 +62,7 @@ pipeline {
6262 steps {
6363 script {
6464 linux_e2e = build(
65- job : ' status-desktop /systems/linux/x86_64/tests-e2e' ,
65+ job : ' status-app /systems/linux/x86_64/tests-e2e' ,
6666 parameters : jenkins. mapToParams([
6767 BUILD_SOURCE : linux_x86_64. fullProjectName,
6868 TESTRAIL_RUN_NAME : utils. pkgFilename(),
@@ -81,7 +81,7 @@ pipeline {
8181 steps {
8282 script {
8383 windows_x86_64 = getArtifacts(
84- ' Windows' , jenkins.Build (' status-desktop /systems/windows/x86_64/package' )
84+ ' Windows' , jenkins.Build (' status-app /systems/windows/x86_64/package' )
8585 )
8686 }
8787 }
@@ -95,7 +95,7 @@ pipeline {
9595 steps {
9696 script {
9797 windows_e2e = build(
98- job : ' status-desktop /systems/windows/x86_64/tests-e2e' ,
98+ job : ' status-app /systems/windows/x86_64/tests-e2e' ,
9999 parameters : jenkins. mapToParams([
100100 BUILD_SOURCE : windows_x86_64. fullProjectName,
101101 TESTRAIL_RUN_NAME : utils. pkgFilename(),
@@ -110,15 +110,15 @@ pipeline {
110110 }
111111 stage(' MacOS/aarch64' ) { steps { script {
112112 macos_aarch64 = getArtifacts(
113- ' MacOS/aarch64' , jenkins.Build (' status-desktop /systems/macos/aarch64/package' )
113+ ' MacOS/aarch64' , jenkins.Build (' status-app /systems/macos/aarch64/package' )
114114 )
115115 } } }
116116 }
117117 }
118118 stage(' Publish' ) {
119119 when { expression { params. PUBLISH } }
120120 steps { script {
121- github. publishReleaseFiles(repo : ' status-desktop ' );
121+ github. publishReleaseFiles(repo : ' status-app ' );
122122 } }
123123 }
124124 }
@@ -148,7 +148,7 @@ pipeline {
148148 * - A user explicitly specified a value
149149 * Since release builds create and re-create GitHub drafts every time. */
150150def Boolean getPublishDefault (Boolean previousValue ) {
151- if (env. JOB_NAME . startsWith(' status-desktop /release' )) { return true }
151+ if (env. JOB_NAME . startsWith(' status-app /release' )) { return true }
152152 if (previousValue != null ) { return previousValue }
153153 return false
154154}
0 commit comments