ium_452639/stats.jenkinsfile
Robert Bendun 23a5899664 stats.txt
2023-03-29 01:52:40 +02:00

11 lines
435 B
Plaintext

node {
stage('Build') {
checkout([$class: 'GitSCM', branches: [[name: 'ztm']], extensions: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s452639/ium_452639']]])
copyArtifacts filter: 'train.csv', fingerprintArtifacts: true, projectName: 's452639-create-dataset', selector: buildParameter('BUILD_SELECTOR')
sh './stats.sh > stats.txt'
archiveArtifacts artifacts: 'stats.txt', followSymlinks: false
}
}