add script

This commit is contained in:
PawelDopierala 2024-03-27 03:10:44 +01:00
parent 275ac0349e
commit d3e681fe33

View File

@ -23,9 +23,15 @@ pipeline {
copyArtifacts fingerprintArtifacts: true, projectName: 'z-s495719-create-dataset', selector: buildParameter('BUILD_SELECTOR')
}
}
stage('Script') {
steps {
sh 'chmod 777 ./data_stats.sh'
sh "./data_stats.sh"
}
}
stage('Artifacts') {
steps {
archiveArtifacts artifacts: 'data_stats.txt'
archiveArtifacts artifacts: 'stats.txt'
}
}
}