ium_452639/stats.jenkinsfile

11 lines
435 B
Plaintext
Raw Normal View History

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