Skip to content

Instantly share code, notes, and snippets.

@toolmantim
Created October 24, 2017 04:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save toolmantim/9d0dc8ebf16abbc56cca246245f9635c to your computer and use it in GitHub Desktop.
Save toolmantim/9d0dc8ebf16abbc56cca246245f9635c to your computer and use it in GitHub Desktop.
An example of using Taurus with Buildkite
steps:
- command: "taurus.sh some-config.yml"
label: "Taurus"
artifact_paths: "bzt-artifacts/*"
#!/bin/bash
set -euo pipefail
echo "+++ Running bzt $@"
docker run \
-i \
--rm \
-v "$(pwd):/bzt-configs" \
-v "$(pwd)/bzt-artifacts:/tmp/artifacts" \
blazemeter/taurus "$@"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment