From 65b0f7a5a9dd3acce3374be36109bc7801ce7ea7 Mon Sep 17 00:00:00 2001 From: Mateusz Trojak Date: Tue, 27 Sep 2016 16:41:57 +0200 Subject: [PATCH] Update circle.yml --- circle.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/circle.yml b/circle.yml index c7c18ce..959fd7e 100644 --- a/circle.yml +++ b/circle.yml @@ -3,8 +3,6 @@ machine: services: - docker - environment: - PORTS: "3001 8083 8086" dependencies: override: @@ -16,8 +14,11 @@ test: - docker ps - docker-compose logs; sleep 3 override: - - for port in $PORTS; do curl --retry 10 --retry-delay 5 -v http://localhost:${port}; done + - curl --retry 10 --retry-delay 5 -v http://localhost:3001 + - curl --retry 10 --retry-delay 5 -v http://localhost:8083 + - curl --retry 10 --retry-delay 5 -v http://localhost:8086 post: - - for port in $PORTS; do curl -OL http://localhost:${port}; done + - wget http://localhost:3001 -O grafana.html + - wget http://localhost:8083 -O influxdb.html - mv *.html $CIRCLE_ARTIFACTS - killall --wait docker