diff --git a/ium_03/Jenkinsfile b/ium_03/Jenkinsfile index 35f7974..d19de3d 100644 --- a/ium_03/Jenkinsfile +++ b/ium_03/Jenkinsfile @@ -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' } } }