steps added

This commit is contained in:
Arkadiusz Charliński 2024-03-26 23:23:21 +01:00
parent 03733f8d28
commit 7e2107a70e
1 changed files with 11 additions and 7 deletions

18
ium_03/Jenkinsfile vendored
View File

@ -18,18 +18,22 @@ pipeline {
sh "figlet \"${INPUT_TEXT}\" | tee output.txt"
}
}
stage('Goodbye!') {
stage('checkout: Check out from version control') {
steps {
}
}
stage('sh: Shell Script') {
steps {
}
}
stage('archiveArtifacts') {
steps {
echo 'Goodbye!'
//Zarchiwizuj wynik
archiveArtifacts 'output.txt'
}
}
stage('major to jest major!') {
stage('Koniec!') {
steps {
echo 'idziemy do zimy!'
//Zarchiwizuj wynik
// archiveArtifacts 'output.txt'
echo 'Dowidzenia'
}
}
}