diff --git a/Jenkinsfile b/Jenkinsfile index 76456ef..976c648 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,5 +1,10 @@ -job('example') { - steps { - shell('echo Hello World!') +pipeline { + agent any + stages { + stage('Example') { + steps { + echo 'hello world' + } + } } }