add Jenkinsfile

This commit is contained in:
jakubknczny 2021-03-27 16:54:42 +01:00
parent 81eeccb395
commit 06f4ceaef6

10
Jenkinsfile.txt Normal file
View File

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