Zaktualizuj 'Jenkinsfile'

This commit is contained in:
Krzysztof Moś 2019-04-26 11:17:25 +00:00
parent 9b29a2651d
commit 55be801413

13
Jenkinsfile vendored
View File

@ -1,3 +1,12 @@
node {
echo 'Hello World'
pipeline {
agent any
stages {
stage('Stage 1') {
steps {
echo 'Hello world!'
}
}
}
} }