diff --git a/.ci/buildDockerImages.groovy b/.ci/buildDockerImages.groovy index 6f01fc4b1..70936a3ca 100644 --- a/.ci/buildDockerImages.groovy +++ b/.ci/buildDockerImages.groovy @@ -164,14 +164,14 @@ pipeline { dir("integration-testing-images"){ git('https://github.com/elastic/apm-integration-testing.git') sh(label: 'Test Docker containers', script: 'make -C docker all-tests') - sh(label: 'Push Docker images', script: '.ci/scripts/push-integration-test-images.sh') } - post { - always { - junit(allowEmptyResults: true, - keepLongStdio: true, - testResults: "${BASE_DIR}/**/junit-*.xml") - } + sh(label: 'Push Docker images', script: '.ci/scripts/push-integration-test-images.sh') + post { + always { + junit(allowEmptyResults: true, + keepLongStdio: true, + testResults: "${BASE_DIR}/**/junit-*.xml") + } } } }