From 51876ea181f7390a10784ca350000aa01f20cf0f Mon Sep 17 00:00:00 2001 From: s464962 Date: Tue, 26 Mar 2024 10:47:35 +0100 Subject: [PATCH] Update Jenkinsfile --- Jenkinsfile | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 0352999..11c246c 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -4,25 +4,18 @@ pipeline { parameters { string ( defaultValue: 'Hello World!', - description: 'Tekst, którym chcesz przywitać świat', - name: 'INPUT_TEXT', - trim: false + description: 'Tekst, którym chcesz przywitać świat' ) } 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" + echo "Hello World" } } stage('Goodbye!') { steps { echo 'Goodbye!' - //Zarchiwizuj wynik - archiveArtifacts 'output.txt' } } }