Jenkinsfile

This commit is contained in:
Kornelia Girejko 2022-03-27 14:35:19 +02:00
parent 302eae63db
commit 8d1e3d456e

11
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,11 @@
pipeline {
agent any
stages {
stage('Hello') {
steps {
echo 'Hello World'
}
}
}
}