1
0

Jenkins update

This commit is contained in:
s478841 2022-03-28 00:17:37 +02:00
parent 34e53f524a
commit 7c909f817c

9
Jenkinsfile vendored
View File

@ -1,4 +1,6 @@
node {
// properties([[$class: 'GogsProjectProperty', gogsBranchFilter: '', gogsSecret: <object of type hudson.util.Secret>, gogsUsePayload: false], [$class: 'RebuildSettings', autoRebuild: false, rebuildDisabled: false], parameters([string('CUTOFF')]), pipelineTriggers([pollSCM('')])])
stage('checkout: Check out from version control') {
git 'https://git.wmi.amu.edu.pl/s478841/ium_478841.git'
}
@ -14,9 +16,8 @@ node {
sh './load_data.sh'
}
}
post {
always {
archiveArtifacts artifacts: 'avocado.data*', onlyIfSuccessful: true
}
stage('Archive arifacts') {
archiveArtifacts artifacts: 'avocado.data*', followSymlinks: false
}
}