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