This commit is contained in:
Szymon Parafiński 2022-03-21 11:13:00 +01:00
parent 99717df4b7
commit 2dbd16c010

37
Jenkinsfile vendored
View File

@ -1,20 +1,29 @@
node { pipeline {
stage('Preparation') { agent any
properties([ //Definijuemy parametry, które będzie można podać podczas wywoływania zadania
parameters([ parameters {
string( string (
defaultValue: 'szymonparafinski', defaultValue: 'Hello World!',
description: 'Kaggle username', description: 'Tekst, którym chcesz przywitać świat',
name: 'KAGGLE_USERNAME', name: 'INPUT_TEXT',
trim: false trim: false
) )
])
])
} }
stage('Build') { stages {
// Run the maven build stage('Hello') {
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}"]) { steps {
sh 'echo KAGGLE_USERNAME: $KAGGLE_USERNAME' //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'
}
} }
} }
} }