task(UM_03) Update Jenkinsfile

This commit is contained in:
sadurska@trui.pl 2021-04-17 20:27:42 +02:00
parent 61c38501f8
commit 78c8da15a8

4
Jenkinsfile vendored
View File

@ -1,6 +1,5 @@
pipeline {
agent any
//Definijuemy parametry, które będzie można podać podczas wywoływania zadania
parameters {
string (
defaultValue: 'Witaj świecie!',
@ -12,16 +11,13 @@ pipeline {
stages {
stage('Hello') {
steps {
//Wypisz wartość parametru w konsoli (To nie jest polecenie bash, tylko groovy!)
echo "INPUT_TEXT: ${INPUT_TEXT}"
//Wywołaj w konsoli komendę "figlet", która generuje ASCI-art
sh "figlet \"${INPUT_TEXT}\" | tee output.txt"
}
}
stage('Goodbye!') {
steps {
echo 'Goodbye!'
//Zarchiwizuj wynik
archiveArtifacts 'output.txt'
}
}