2023-03-28 13:31:04 +02:00
|
|
|
pipeline {
|
|
|
|
agent any
|
|
|
|
//Definijuemy parametry, ktore bedzie mozna podac podczas wywolywania zadania
|
2023-03-28 13:38:32 +02:00
|
|
|
parameters {
|
|
|
|
buildSelector (
|
|
|
|
name: 'BUILD_SELECTOR',
|
|
|
|
defaultValue: lastSuccessful(),
|
|
|
|
description: 'Which build to use for copying artifacts?',
|
|
|
|
)
|
|
|
|
}
|
2023-03-28 13:31:04 +02:00
|
|
|
stages {
|
2023-03-28 13:38:32 +02:00
|
|
|
stage('Load Artifact') {
|
|
|
|
steps {
|
|
|
|
copyArtifacts fingerprintArtifacts: true, projectName: 's452627-create-dataset', selector: buildParameter('BUILD_SELECTOR')
|
|
|
|
}
|
2023-03-28 13:31:04 +02:00
|
|
|
stage('Run Script') {
|
|
|
|
steps {
|
|
|
|
script {
|
|
|
|
sh "chmod +x -R ${env.WORKSPACE}"
|
|
|
|
sh './make_statistic.sh | tee output.txt'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
stage('Archive Output') {
|
|
|
|
steps {
|
|
|
|
archiveArtifacts 'output.txt'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|