Browse code

Jenkinsfile: remove e2e image stage

The image that's built is not pushed anywhere, and is just
building the same as the main image already builds, so didn't
add value.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>

Sebastiaan van Stijn authored on 2020/11/11 02:40:21
Showing 1 changed files
... ...
@@ -214,14 +214,6 @@ pipeline {
214 214
                                 '''
215 215
                             }
216 216
                         }
217
-                        stage("Build e2e image") {
218
-                            steps {
219
-                                sh '''
220
-                                echo "Building e2e image"
221
-                                docker build --build-arg DOCKER_GITCOMMIT=${GIT_COMMIT} -t moby-e2e-test -f Dockerfile.e2e .
222
-                                '''
223
-                            }
224
-                        }
225 217
                     }
226 218
 
227 219
                     post {