Jenkinsfile edited

This commit is contained in:
Jakub Henyk 2023-03-28 13:18:23 +02:00
parent 02b1913bda
commit 85fb087785

10
Jenkinsfile vendored
View File

@ -3,9 +3,9 @@ pipeline {
//Definijuemy parametry, ktore bedzie mozna podac podczas wywolywania zadania
parameters {
string (
name: 'INPUT_TEXT',
defaultValue: 'Hello World!',
description: 'Tekst, ktorym chcesz przywitac swiat',
name: 'CUTOFF',
defaultValue: '300',
description: 'How many examples do You want to cut?',
trim: false
)
}
@ -19,10 +19,8 @@ pipeline {
}
}
stage('Goodbye!') {
stage('Archive Output') {
steps {
echo 'Goodbye!'
//Zarchiwizuj wynik
archiveArtifacts 'output.txt'
}
}