Skip to content

Commit 296424b

Browse files
adding quickstart.zip file to the build (#236)
1 parent 73fa296 commit 296424b

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

Jenkinsfile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,13 @@ pipeline {
188188
sh 'cd ${WORKSPACE}/webui; PATH="${linux_node_dir}/bin:$PATH" ${linux_npm_exe} run eslint; cd ${WORKSPACE}'
189189
}
190190
}
191+
stage('Zip Quickstart Files') {
192+
steps {
193+
sh 'cd ${WORKSPACE}/samples; zip -r ${WORKSPACE}/quickstart.zip quickstart; cd ${WORKSPACE}'
194+
sh 'cd ${WORKSPACE}/samples; tar zcf ${WORKSPACE}/quickstart.tar.gz quickstart; cd ${WORKSPACE}'
195+
archiveArtifacts "quickstart.*"
196+
}
197+
}
191198
stage('Linux Build Installers') {
192199
steps {
193200
sh 'cd ${WORKSPACE}/electron; PATH="${linux_node_dir}/bin:$PATH" ${linux_npm_exe} run build; cd ${WORKSPACE}'

0 commit comments

Comments
 (0)