Zaktualizuj 'Jenkinsfile'
This commit is contained in:
parent
4b408a2883
commit
eae611d235
11
Jenkinsfile
vendored
11
Jenkinsfile
vendored
@ -11,4 +11,15 @@ node {
|
|||||||
])
|
])
|
||||||
])
|
])
|
||||||
}
|
}
|
||||||
|
stage('Hello') {
|
||||||
|
//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') {
|
||||||
|
echo 'Goodbye!'
|
||||||
|
//Zarchiwizuj wynik
|
||||||
|
archiveArtifacts 'output.txt'
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user