summaryrefslogtreecommitdiffstats
path: root/ci
diff options
context:
space:
mode:
authorGeorg Kunz <georg.kunz@ericsson.com>2016-12-10 16:35:49 +0100
committerGeorg Kunz <georg.kunz@ericsson.com>2016-12-13 11:18:58 +0100
commit28850f28aaa80cc71563f4c4698af70da6334f03 (patch)
treed6dc9b90c534a53e8112414f0334c5b80205b17c /ci
parentc62b63e6f4b2560dcc673206faee74706fd9e7bc (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')
-rwxr-xr-xci/build-gluon-packages.sh12
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"