diff --git a/Jenkinsfile b/Jenkinsfile index 5cd5fef..bb9385d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,8 +1,10 @@ -node { - stage('Hello') { - echo "Hello" - } - stage('Goodbye') { - echo 'Time to say goodbye!' +pipeline { + agent any + stages { + stage("Check out from version control") { + steps { + checkout scm + } + } } } \ No newline at end of file