ium_434780/Jenkinsfile

25 lines
539 B
Plaintext
Raw Normal View History

2021-04-17 19:50:37 +02:00
pipeline {
agent any
parameters {
string (
2021-04-17 20:17:50 +02:00
defaultValue: 'Witaj świecie!',
2021-04-17 19:50:37 +02:00
description: 'Tekst, którym chcesz przywitać świat',
name: 'INPUT_TEXT',
trim: false
)
}
stages {
stage('Hello') {
steps {
echo "INPUT_TEXT: ${INPUT_TEXT}"
sh "figlet \"${INPUT_TEXT}\" | tee output.txt"
}
}
stage('Goodbye!') {
steps {
echo 'Goodbye!'
archiveArtifacts 'output.txt'
}
}
}
}