Added Jenkinsfile.

This commit is contained in:
Jan Nowak 2021-03-28 21:04:10 +02:00
parent 0b36ea5b07
commit d9518ea09c

10
Jenkinsfile vendored Normal file
View File

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