Update Jenkinsfile

This commit is contained in:
s464903 2024-03-20 12:11:18 +01:00
parent 77ce5dcde1
commit 9eaf1114a1

35
Jenkinsfile vendored
View File

@ -1,29 +1,10 @@
pipeline { pipeline {
agent any agent any
//Definijuemy parametry, które będzie można podać podczas wywoływania zadania stages {
parameters { stage('Stage 1') {
string ( steps {
defaultValue: 'Hello World!', echo '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'
}
}
}
} }