Job name fixes
Some checks failed
s444409-evaluation/pipeline/head There was a failure building this commit
s444409-training/pipeline/head There was a failure building this commit

This commit is contained in:
Marcin Kostrzewski 2022-05-05 23:12:26 +02:00
parent b4fe7361e3
commit 4b2532cad6
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ pipeline {
stages { stages {
stage('Get previousl trend') { stage('Get previousl trend') {
steps { steps {
copyArtifacts projectName: 's444409-evaluate', selector: lastSuccessful(), optional: true copyArtifacts projectName: 's444409-evaluation', selector: lastSuccessful(), optional: true
} }
} }
stage('Evaluate model and write results to file') { stage('Evaluate model and write results to file') {

View File

@ -29,7 +29,7 @@ pipeline {
stage('Archive model and evaluate it') { stage('Archive model and evaluate it') {
steps { steps {
archiveArtifacts artifacts: 'model_out', onlyIfSuccessful: true archiveArtifacts artifacts: 'model_out', onlyIfSuccessful: true
build job: 's444409-evaluation' build job: 's444409-evaluation/main/'
} }
} }
} }