steps added2

This commit is contained in:
Arkadiusz Charliński 2024-03-26 23:26:23 +01:00
parent 7e2107a70e
commit dcacf8af32

5
ium_03/Jenkinsfile vendored
View File

@ -20,15 +20,18 @@ pipeline {
} }
stage('checkout: Check out from version control') { stage('checkout: Check out from version control') {
steps { steps {
echo "ver control"
} }
} }
stage('sh: Shell Script') { stage('sh: Shell Script') {
steps { steps {
echo "shell"
} }
} }
stage('archiveArtifacts') { stage('archiveArtifacts') {
steps { steps {
archiveArtifacts 'output.txt' echo "archive"
// archiveArtifacts 'output.txt'
} }
} }
stage('Koniec!') { stage('Koniec!') {