ium_434749/train-model.Jenkinsfile

22 lines
523 B
Plaintext
Raw Normal View History

2021-04-25 20:55:45 +02:00
pipeline {
agent {
dockerfile true
}
stages {
stage('Build') {
steps {
git 'https://git.wmi.amu.edu.pl/s434749/ium_434749.git'
copyArtifacts fingerprintArtifacts: true, projectName: 's434749-create-dataset', selector: lastSuccessful()
sh 'python3 train_model.py'
}
post {
success {
2021-04-26 08:25:18 +02:00
archiveArtifacts 'cnn.pth,results.txt'
2021-04-25 20:55:45 +02:00
}
}
}
}
}