Created
October 24, 2017 04:59
-
-
Save toolmantim/9d0dc8ebf16abbc56cca246245f9635c to your computer and use it in GitHub Desktop.
An example of using Taurus with Buildkite
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
steps: | |
- command: "taurus.sh some-config.yml" | |
label: "Taurus" | |
artifact_paths: "bzt-artifacts/*" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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