diff options
Diffstat (limited to 'jjb/yardstick/yardstick.yml')
-rw-r--r-- | jjb/yardstick/yardstick.yml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/jjb/yardstick/yardstick.yml b/jjb/yardstick/yardstick.yml index 7d7a6b7b7..0ce9fd853 100644 --- a/jjb/yardstick/yardstick.yml +++ b/jjb/yardstick/yardstick.yml @@ -198,7 +198,7 @@ publishers: - email: - recipients: ana.cunha@ericsson.com + recipients: ana.cunha@ericsson.com jorgen.w.karlsson@ericsson.com ######################## # builder macros @@ -213,6 +213,12 @@ echo "Yardstick: Run benchmark test suites ..." + # Remove old containers + docker ps | grep opnfv/yardstick-ci |\ + awk '{print $1}' | xargs -r docker stop &>/dev/null + docker ps -a | grep opnfv/yardstick-ci |\ + awk '{print $1}' | xargs -r docker rm &>/dev/null + # Make sure we have latest image docker pull opnfv/yardstick-ci |