jenkins test

This commit is contained in:
s444417 2022-03-24 15:13:56 +01:00
parent eae611d235
commit d13c7f3b6b
2 changed files with 1 additions and 16 deletions

16
Jenkinsfile vendored
View File

@ -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!'

View File

@ -1,2 +1 @@
## Projekt na przedmiot inżynieria oprogramowania