jenkins train

This commit is contained in:
szymonj98 2022-04-27 19:49:15 +02:00
parent 27c2cb7956
commit 690e59ac0c

13
Jenkinsfile_train Normal file
View File

@ -0,0 +1,13 @@
pipeline {
agent {
dockerfile true
}
stages {
stage('Stage 1') {
steps {
copyArtifacts filter: 'data.csv', fingerprintArtifacts: true, projectName: 's444386-create-dataset', selector: lastSuccessful()
sh 'chmod u+x ./biblioteki_dl.py'
}
}
}
}