pipeline.jeniknsfile

This commit is contained in:
Sebastian Wałęsa 2022-03-21 11:27:03 +01:00
parent cfe4dae8a0
commit 4f412ac50a

10
pipeline.jeniknsfile Normal file
View File

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