This commit is contained in:
Mateusz Piwowarski 2024-03-20 14:37:27 +01:00
parent 68234f4d84
commit 072bc15069

29
Jenkinsfile vendored
View File

@ -1,25 +1,12 @@
node { pipeline {
stage('Preparation') { agent any
properties([
parameters([ stages {
string( stage('Clone Repository') {
defaultValue: 'Hello World!', steps {
description: 'Tekst do wyświetlenie', // Clone the Git repository
name: 'INPUT_TEXT', git branch: 'main', url: 'https://git.wmi.amu.edu.pl/s464913/ium_464913'
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"
} }
stage('Goodbye') {
echo 'Goodbye!'
//Zarchiwizuj wynik
archiveArtifacts 'output.txt'
} }
} }