python -> python3
Some checks failed
s444018-training/pipeline/head There was a failure building this commit
s444018-evaluation/pipeline/head This commit looks good

This commit is contained in:
Szymon Parafiński 2022-05-16 02:33:56 +02:00
parent 6939338bd2
commit bcf2dd1c65
2 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ pipeline {
steps {
copyArtifacts projectName: 's444409-training/main', selector: buildParameter('BUILD_SELECTOR')
sh "echo ${params.INPUT} > input_example.json"
sh "python predict.py"
sh "python3 predict.py"
}
}
}

View File

@ -9,7 +9,7 @@ pipeline {
stages {
stage('Script') {
steps {
sh 'python3 ./registry.py'
sh 'python3 ./registry.py'
}
}
}