ium_444386/Jenkinsfile
Szymon Jadczak 63ca6984ad zadanie 4
2022-03-21 10:57:17 +01:00

11 lines
155 B
Groovy

pipeline {
agent any
stages {
stage('Stage 1') {
steps {
echo 'Hello world!'
}
}
}
}