diff --git a/Jenkinsfile b/Jenkinsfile index 11ee15e..fb170f9 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,20 +1,29 @@ -node { - stage('Preparation') { - properties([ - parameters([ - string( - defaultValue: 'szymonparafinski', - description: 'Kaggle username', - name: 'KAGGLE_USERNAME', - trim: false - ) - ]) - ]) - } - stage('Build') { - // Run the maven build - withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}"]) { - sh 'echo KAGGLE_USERNAME: $KAGGLE_USERNAME' - } - } +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' + } + } + } }