Merge branch 'feature/ium_02'

This commit is contained in:
Adam Wojdyla 2022-03-26 10:37:10 +01:00
commit 8b420ff671

7
Jenkinsfile vendored
View File

@ -10,12 +10,9 @@ pipeline {
)
}
stages {
stage('Hello') {
stage('Checkout') {
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"
checkout([$class: 'GitSCM', branches: [[name: '*/master']], extensions: [], userRemoteConfigs: [[credentialsId: '8b8d54ee-f03c-4980-90b1-959faa97082b', url: 'https://git.wmi.amu.edu.pl/s444507/ium_444507.git']]])
}
}
stage('Goodbye!') {