-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Run quark-test from the centos7 build as a CI target, this is the very beginning and we run it only in the same machine that we make a build.
- Loading branch information
Showing
3 changed files
with
33 additions
and
2 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#!/bin/bash | ||
|
||
set -euo pipefail | ||
|
||
function download { | ||
buildkite-agent artifact download "$1" "$2" | ||
} | ||
|
||
if [ -z "${BUILDKITE}" ]; then | ||
echo "This script doesn't appear to be running in buildkite" 1>&2 | ||
echo "refusing to continue" 1>&2 | ||
exit 1 | ||
fi | ||
|
||
download quark-test . | ||
chmod +x quark-test | ||
|
||
sudo ./quark-test | ||
exit $? |
This file contains 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