Skip to content
This repository has been archived by the owner on Dec 5, 2022. It is now read-only.

Commit

Permalink
vars canot be used across build steps - merged them
Browse files Browse the repository at this point in the history
  • Loading branch information
scherniavsky committed Jun 14, 2018
1 parent 2171043 commit a893e43
Showing 1 changed file with 5 additions and 10 deletions.
15 changes: 5 additions & 10 deletions delivery.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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'</strong' '{print ($1>0)}' | grep 1 || exit 1
#
- desc: Push docker image
cmd: |
# Push docker image
echo "Push docker image"
docker push $IMAGE

0 comments on commit a893e43

Please sign in to comment.