From f1513672a831fb8f8ccc7634f8c624bdc2c95e9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miko=C5=82aj=20Pokrywka?= Date: Sun, 27 Mar 2022 22:14:24 +0200 Subject: [PATCH] wip --- JenkinsfileStats | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 JenkinsfileStats diff --git a/JenkinsfileStats b/JenkinsfileStats new file mode 100644 index 0000000..fb170f9 --- /dev/null +++ b/JenkinsfileStats @@ -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' + } + } + } +}