add initial Jenkinsfile

This commit is contained in:
s444452 2022-03-21 10:59:06 +01:00
parent fa74b171c4
commit b48c02693c

10
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,10 @@
pipeline {
agent any
stages {
stage('Stage 1') {
steps {
echo 'Hello world!'
}
}
}
}