Update 'Jenkinsfile_dataset_stats'

This commit is contained in:
Patryk Gałka 2023-04-19 17:18:38 +02:00
parent bf7130532e
commit a78748758e

View File

@ -22,7 +22,24 @@ pipeline {
}
stage('copy_artifacts') {
steps {
copyArtifacts filter: 'dataset.csv', fingerprintArtifacts: true, projectName: 'z-s434686-create-dataset', selector: workspace()
copyArtifacts filter: 'X_test.csv,X_dev.csv,X_train.csv', fingerprintArtifacts: true, projectName: 'z-s434686-create-dataset', selector: workspace()
}
}
stage('Docker') {
agent {
dockerfile {
filename 'second.dockerfile'
dir 'ium_z434686'
reuseNode true
}
}
steps {
sh 'ls -a'
sh 'python ./ium_z434686/dataset-stats.py'
echo 'koniec'
//archiveArtifacts 'X_test.csv'
//archiveArtifacts 'X_dev.csv'
//archiveArtifacts 'X_train.csv'
}
}
stage('Goodbye!') {