Change Jenkinsfile

This commit is contained in:
Jan Świątek 2023-04-08 16:20:53 +02:00
parent 64530907d3
commit 5c200cb131

37
Jenkinsfile vendored
View File

@ -1,25 +1,16 @@
node {
stage('Preparation') {
properties([
parameters([
string(
defaultValue: 'Hello World!',
description: 'Tekst do wyświetlenia',
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"
}
stage('Goodbye') {
echo 'Goodbye!'
//Zarchiwizuj wynik
archiveArtifacts 'output.txt'
pipeline {
agent any
stages {
stage('Checkout') {
steps {
git branch: 'master', url: 'https://git.wmi.amu.edu.pl/s487185/inzynieria-uczenia-maszynowego.git'
}
}
stage('Shell script') {
steps {
sh 'echo test'
}
}
}
}