We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73fa296 commit 296424bCopy full SHA for 296424b
Jenkinsfile
@@ -188,6 +188,13 @@ pipeline {
188
sh 'cd ${WORKSPACE}/webui; PATH="${linux_node_dir}/bin:$PATH" ${linux_npm_exe} run eslint; cd ${WORKSPACE}'
189
}
190
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
198
stage('Linux Build Installers') {
199
steps {
200
sh 'cd ${WORKSPACE}/electron; PATH="${linux_node_dir}/bin:$PATH" ${linux_npm_exe} run build; cd ${WORKSPACE}'
0 commit comments