diff --git a/Jenkinsfile b/Jenkinsfile index 1783d1c..ca9160d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,24 +1,24 @@ pipeline { - agent { docker { image 'samueldebruyn/debian-git:latest' }} + agent { docker { image 'debian/stable-slim:latest' }} stages { stage('checkout with submodules') { steps { checkout scm: [ $class: 'GitSCM', extensions: [ [ $class: 'SubmoduleOption', recursiveSubmodules: true, ] ] ] } } stage('test') { steps { sh 'ls arcanist-extensions/' } } } }