ium_444354/Jenkinsfile
Adrian Charkiewicz cf5277c6d3 checkout
2022-03-23 10:35:56 +01:00

10 lines
164 B
Groovy

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