Jenkinsfile_2 Update

This commit is contained in:
Jakub Henyk 2023-03-28 13:38:32 +02:00
parent 128d212ef5
commit 0894533570

View File

@ -1,7 +1,18 @@
pipeline {
agent any
//Definijuemy parametry, ktore bedzie mozna podac podczas wywolywania zadania
parameters {
buildSelector (
name: 'BUILD_SELECTOR',
defaultValue: lastSuccessful(),
description: 'Which build to use for copying artifacts?',
)
}
stages {
stage('Load Artifact') {
steps {
copyArtifacts fingerprintArtifacts: true, projectName: 's452627-create-dataset', selector: buildParameter('BUILD_SELECTOR')
}
stage('Run Script') {
steps {
script {