aboutsummaryrefslogtreecommitdiffstats
path: root/bootstrap/jenkins/vagrant/build-all-java.sh
diff options
context:
space:
mode:
authorGary Wu <gary.i.wu@huawei.com>2017-06-16 13:44:28 -0700
committerGary Wu <gary.i.wu@huawei.com>2017-06-16 13:44:28 -0700
commit213a8351fd266294e17a862b4d223c1968800a09 (patch)
tree0eaa87c3253da9f65fcbaf514c6b2baaf06fa162 /bootstrap/jenkins/vagrant/build-all-java.sh
parent06a50674c025c198585a6de4e6bb035cde63832d (diff)
Added vagrant setup for a Jenkins system for ONAP
Add a set of vagrant scripts that will set up a local Jenkins environment with pre-defined jobs to build all the ONAP java code and docker images. Change-Id: I67ed254bcb38a7be989b7c2861fd3ea4ec9c66f2 Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
Diffstat (limited to 'bootstrap/jenkins/vagrant/build-all-java.sh')
-rwxr-xr-xbootstrap/jenkins/vagrant/build-all-java.sh9
1 files changed, 9 insertions, 0 deletions
diff --git a/bootstrap/jenkins/vagrant/build-all-java.sh b/bootstrap/jenkins/vagrant/build-all-java.sh
new file mode 100755
index 000000000..67333b76f
--- /dev/null
+++ b/bootstrap/jenkins/vagrant/build-all-java.sh
@@ -0,0 +1,9 @@
+#!/bin/bash
+
+# build all jobs
+cd ~jenkins
+for d in jobs/java*; do
+ JOB=$(basename "$d")
+ echo build "$JOB"
+ java -jar jenkins-cli.jar -s http://localhost:8080/ -auth jenkins:jenkins build "$JOB"
+done