This commit is contained in:
Jakub Zaręba 2023-05-10 18:18:11 +02:00
parent 1b7cbaeb3d
commit fbfc2fadce

View File

@ -10,7 +10,7 @@ pipeline {
buildSelector(name: 'BUILD_NUMBER', description: 'Wybierz numer buildu', defaultSelector: lastSuccessful())
}
stages {
stage('Preparation') {
stage('Przygotowanie') {
steps {
sh 'pip install pandas tensorflow scikit-learn matplotlib'
}
@ -25,7 +25,7 @@ pipeline {
stage('Pobierz model') {
steps {
script {
copyArtifacts(projectName: 's487187-training/master', selector: specific("${params.BUILD_NUMBER}"), fingerprintArtifacts: true)
copyArtifacts(projectName: 's487187-training/%2500', selector: specific("${params.BUILD_NUMBER}"), fingerprintArtifacts: true)
}
}
}