From 90799fc965e33c74715aebefd87be4a8dd406203 Mon Sep 17 00:00:00 2001 From: Ivan Fernandez Calvo Date: Mon, 22 Jul 2019 13:52:22 +0200 Subject: [PATCH] fix: execute .ci/scripts/push-integration-test-images.sh in the correct context --- .ci/buildDockerImages.groovy | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) 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") + } } } }