update do zadania 2 z lab 06

This commit is contained in:
Norbert Walkowiak 2023-06-08 10:51:51 +02:00
parent 01a03a9562
commit 1b097d9e96

View File

@ -10,18 +10,17 @@ pipeline{
) )
} }
permissions {
artifactPermission('z-s487175-training', 'job:z-s487175-training:copy')
}
stages{ stages{
stage('Copy model artifacts with test dataset') { stage('Copy model artifacts with test dataset') {
steps { steps {
copyArtifacts( script {
projectName: 'z-s487175-training', def myProject = "z-s487175-training/${params.BRANCH}"
fingerprintArtifacts: true, copyArtifacts(
selector: [$class: 'SpecificBuildSelector', buildNumber: "lastSuccessfulBuild"] projectName: myProject,
) fingerprintArtifacts: true,
selector: [$class: 'SpecificBuildSelector', buildNumber: "lastSuccessfulBuild"]
)
}
} }
} }