pipeline run fix changed files

This commit is contained in:
wikbom 2023-05-10 16:48:04 +02:00
parent 57cb786a62
commit 43b4e67eda
2 changed files with 5 additions and 5 deletions

5
Jenkinsfile vendored
View File

@ -37,6 +37,11 @@ node {
echo 'saving artifacts' echo 'saving artifacts'
archiveArtifacts 'output.csv' archiveArtifacts 'output.csv'
} }
stage('Trigger Learning pipeline') {
steps {
build 's470618-training'
}
}
} }
} }

View File

@ -25,11 +25,6 @@ node {
echo 'saving artifacts' echo 'saving artifacts'
archiveArtifacts 'model.pt' archiveArtifacts 'model.pt'
} }
stage('Trigger Learning pipeline') {
steps {
build 's470618-training'
}
}
} }
} }