diff --git a/Jenkinsfile b/Jenkinsfile index acef5e1..c67b2cf 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,21 +1,7 @@ node { - stage('Preparation') { - properties([ - parameters([ - string( - defaultValue: 'Hello World!', - description: 'Tekst do wyświetlenie', - name: 'INPUT_TEXT', - trim: false - ) - ]) - ]) - } stage('Hello') { //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" } stage('Goodbye') { echo 'Goodbye!' diff --git a/README.md b/README.md index ce48fec..fcb71fe 100644 --- a/README.md +++ b/README.md @@ -1,2 +1 @@ ## Projekt na przedmiot inżynieria oprogramowania -