Add Jenkinsfile

This commit is contained in:
s464903 2024-03-20 11:17:00 +01:00
parent 645ab115cf
commit eb8138dbf4

10
Jenkinsfile vendored Normal file
View File

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