Added Jenkinsfile
This commit is contained in:
parent
514bdefe75
commit
7d70d612a5
29
Jenkinsfile.txt
Normal file
29
Jenkinsfile.txt
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
pipeline {
|
||||||
|
agent any
|
||||||
|
//Definijuemy parametry, które bêdzie mo¿na podaæ podczas wywo³ywania zadania
|
||||||
|
parameters {
|
||||||
|
string (
|
||||||
|
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