Update Jenkinsfile
This commit is contained in:
parent
824f160d86
commit
c57574c37b
37
Jenkinsfile
vendored
37
Jenkinsfile
vendored
@ -1,10 +1,29 @@
|
|||||||
pipeline {
|
pipeline {
|
||||||
agent any
|
agent any
|
||||||
stages {
|
//Definijuemy parametry, które będzie można podać podczas wywoływania zadania
|
||||||
stage('Stage 1') {
|
parameters {
|
||||||
steps {
|
string (
|
||||||
echo 'Hello world!'
|
defaultValue: 'Hello World!',
|
||||||
}
|
description: 'Tekst, którym chcesz przywitać świat',
|
||||||
}
|
name: 'INPUT_TEXT',
|
||||||
}
|
trim: false
|
||||||
}
|
)
|
||||||
|
}
|
||||||
|
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'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user