Revert "Use archived dataset and trigger training"

This reverts commit 3ba963864b.
This commit is contained in:
Marcin Kostrzewski 2022-05-05 21:38:46 +02:00
parent 3ba963864b
commit 4128882975
2 changed files with 8 additions and 14 deletions

10
Jenkinsfile vendored
View File

@ -28,11 +28,11 @@ pipeline {
} }
} }
} }
stage('Archive dataset and run training') { }
steps { post {
archiveArtifacts artifacts: 'data/*', onlyIfSuccessful: true always {
build job: 's444409-training/main/' archiveArtifacts artifacts: 'data/*',
} onlyIfSuccessful: true
} }
} }
} }

View File

@ -20,22 +20,16 @@ pipeline {
} }
stages { stages {
stage('Get arifacts') { stage('Run data stats') {
steps { steps {
copyArtifacts fingerprintArtifacts: true, projectName: 's444409-create-dataset', selector: lastSuccessful() sh "python power_plant_data_stats.py"
}
}
stage('Train model') {
steps {
sh "python train_model.py"
} }
} }
} }
post { post {
always { always {
archiveArtifacts artifacts: 'model_out', archiveArtifacts artifacts: 'data/*',
onlyIfSuccessful: true onlyIfSuccessful: true
} }
} }