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()) buildSelector(name: 'BUILD_NUMBER', description: 'Wybierz numer buildu', defaultSelector: lastSuccessful())
} }
stages { stages {
stage('Preparation') { stage('Przygotowanie') {
steps { steps {
sh 'pip install pandas tensorflow scikit-learn matplotlib' sh 'pip install pandas tensorflow scikit-learn matplotlib'
} }
@ -25,7 +25,7 @@ pipeline {
stage('Pobierz model') { stage('Pobierz model') {
steps { steps {
script { 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)
} }
} }
} }