diff options
author | Daniel Gröber <dxld@darkboxed.org> | 2017-09-18 20:49:24 +0200 |
---|---|---|
committer | Daniel Gröber <dxld@darkboxed.org> | 2017-09-18 20:51:38 +0200 |
commit | 2bd30ac61cab9c66d6155ed1ed3e5f4dd0470444 (patch) | |
tree | b4d423c3fb1c002e352932bf2696e0a58b98ecc9 /scripts/ci/build.sh | |
parent | 5bf0f98fdff9ec190ff8a491638ca23147bec8cc (diff) |
Extract CI config into scripts
Diffstat (limited to 'scripts/ci/build.sh')
-rwxr-xr-x | scripts/ci/build.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/scripts/ci/build.sh b/scripts/ci/build.sh new file mode 100755 index 0000000..7d2c136 --- /dev/null +++ b/scripts/ci/build.sh @@ -0,0 +1,9 @@ +#!/bin/sh + +set -ex + +CI_SCRIPTS_DIR="$(realpath "$(dirname "$0")")" + +for step in $(printf '%s\n' "$CI_SCRIPTS_DIR"/steps/* | sort); do + . $step +done |