Added sample Jenkinsfile

This commit is contained in:
emkarcinos 2022-03-21 10:26:02 +01:00
parent d4b1d98926
commit 0a01edd485

10
Jenkinsfile vendored Normal file
View File

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