ium_444354/Jenkinsfile
Adrian Charkiewicz 3c9a264d0b checkout
2022-03-23 10:38:52 +01:00

12 lines
171 B
Groovy

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