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