task(UM_03) Update Jenkinsfile
This commit is contained in:
parent
61c38501f8
commit
78c8da15a8
4
Jenkinsfile
vendored
4
Jenkinsfile
vendored
@ -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'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user