Add Jenkins configuration

This commit is contained in:
Wojciech Jarmosz 2021-03-27 19:39:22 +01:00
parent a3cf19f45a
commit 6922accdbc

10
Jenkinsfile vendored Normal file
View File

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