Jenkinsfile

This commit is contained in:
Anna Nowak 2021-03-28 19:38:58 +02:00
parent abd8cdac0d
commit 597d1753ac
1 changed files with 10 additions and 0 deletions

10
Jenkinsfile vendored Normal file
View File

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