Jenkinsfile

This commit is contained in:
Cezary Gałązkiewicz 2022-03-21 10:51:30 +01:00
parent a4e1a1f930
commit 68f6510b91
1 changed files with 10 additions and 0 deletions

10
jenkinsfile Normal file
View File

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