10 lines
404 B
Groovy
10 lines
404 B
Groovy
node {
|
|
checkout scm
|
|
docker.image('jvncziii/ium:latest').withRun('') { c->
|
|
copyArtifacts filter:'train.csv', fingerprintArtifacts: true, projectName: 'z-s495716-create-dataset', selector: buildParameter('BUILD_SELECTOR')
|
|
sh 'chmod 777 stats/data_stats.sh'
|
|
sh './stats/data_stats.sh'
|
|
archiveArtifacts artifacts: 'train_lines.txt', followSymlinks: false
|
|
}
|
|
}
|