diff options
author | Georg Kunz <georg.kunz@ericsson.com> | 2016-12-10 16:35:49 +0100 |
---|---|---|
committer | Georg Kunz <georg.kunz@ericsson.com> | 2016-12-13 11:18:58 +0100 |
commit | 28850f28aaa80cc71563f4c4698af70da6334f03 (patch) | |
tree | d6dc9b90c534a53e8112414f0334c5b80205b17c /ci/build-gluon-packages.sh | |
parent | c62b63e6f4b2560dcc673206faee74706fd9e7bc (diff) |
Basic CI integration for Gluon
This first iteration of OPNFV CI integration targets a daily
build of an installable RPM package based on the lastest
Gluon upstream master branch.
Change-Id: I6ad0b339284e58e566eb85a3bcf981b52ba372b8
Signed-off-by: Georg Kunz <georg.kunz@ericsson.com>
Diffstat (limited to 'ci/build-gluon-packages.sh')
-rwxr-xr-x | ci/build-gluon-packages.sh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/ci/build-gluon-packages.sh b/ci/build-gluon-packages.sh new file mode 100755 index 0000000..b35b5b8 --- /dev/null +++ b/ci/build-gluon-packages.sh @@ -0,0 +1,12 @@ +#!/bin/bash +set -o errexit +set -o nounset +set -o pipefail + +echo "Running make to build Gluon packages..." + +pushd ../build +make +popd + +echo "make finished" |