diff --git a/delivery.yaml b/delivery.yaml index ba4cb91..d033c36 100644 --- a/delivery.yaml +++ b/delivery.yaml @@ -10,19 +10,15 @@ pipeline: event: push branch: master commands: - - desc: Install Docker - cmd: | - # Docker - curl -fLOsS https://delivery.cloud.zalando.com/utils/ensure-docker && sh ensure-docker && rm ensure-docker - - desc: Build docker image + - desc: Build, test & push the Docker image cmd: | export GIT_TAG=$(git describe --tags --always --dirty) export IMAGE=registry-write.opensource.zalan.do/tip/docker-locust:$GIT_TAG echo "Image: $IMAGE" echo "Build docker image" docker build -t $IMAGE --build-arg DL_IMAGE_VERSION=$GIT_TAG . - - desc: Run smoke test - cmd: | + + # Smoke test echo "Deploy image locally and run simple scenario" ./local.sh deploy --target=https://google.com --locust-file=./example/simple.py --slaves=2 --mode=auto --users=2 --hatch-rate=1 --duration=5 # check if json report exists and has non-zero size @@ -31,8 +27,7 @@ pipeline: [ -s reports/reports.html ] || exit 1 # check if RPS value is greater than 0 cat reports/reports.html | grep 'RPS:' | cut -c 17- | awk -F'0)}' | grep 1 || exit 1 - # - - desc: Push docker image - cmd: | + + # Push docker image echo "Push docker image" docker push $IMAGE