This commit is contained in:
Jakub Henyk 2023-03-28 12:34:55 +02:00
parent bf1793d59b
commit 089629d6a0

6
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: 'INPUT_TEXT',
trim: false
)
}
@ -13,9 +13,9 @@ pipeline {
stage('Hello') {
steps {
//Wypisz wartosc parametru w konsoli (To nie jest polecenie bash, tylko groovy!)
echo "INPUT_TEXT: ${name}"
echo "INPUT_TEXT: ${INPUT_TEXT}"
//Wywolaj w konsoli komende "figlet", ktora generuje ASCI-art
sh "figlet \"${name}\" | tee output.txt"
sh "figlet \"${INPUT_TEXT}\" | tee output.txt"
}
}
stage('Goodbye!') {