add jenkinsfile

This commit is contained in:
s434732 2021-03-28 15:05:41 +02:00
parent d6d1f142c3
commit bbeec72e2e

10
Jenkinsfile.txt Normal file
View File

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