summaryrefslogtreecommitdiffstats
path: root/bootstrap/jenkins/vagrant/jenkins-init-2.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/jenkins-init-2.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/jenkins-init-2.sh')
-rwxr-xr-xbootstrap/jenkins/vagrant/jenkins-init-2.sh15
1 files changed, 15 insertions, 0 deletions
diff --git a/bootstrap/jenkins/vagrant/jenkins-init-2.sh b/bootstrap/jenkins/vagrant/jenkins-init-2.sh
new file mode 100755
index 000000000..eb0efe6b9
--- /dev/null
+++ b/bootstrap/jenkins/vagrant/jenkins-init-2.sh
@@ -0,0 +1,15 @@
+#!/bin/bash
+
+cd ~jenkins
+ln -s /var/cache/jenkins/war/WEB-INF/jenkins-cli.jar
+
+# Get the update center ourself
+curl -L http://updates.jenkins-ci.org/update-center.json | sed '1d;$d' | curl -X POST -H 'Accept: application/json' -d @- http://localhost:8080/updateCenter/byId/default/postBack
+
+java -jar jenkins-cli.jar -s http://localhost:8080/ -auth jenkins:jenkins install-plugin git
+java -jar jenkins-cli.jar -s http://localhost:8080/ -auth jenkins:jenkins install-plugin ws-cleanup
+java -jar jenkins-cli.jar -s http://localhost:8080/ -auth jenkins:jenkins install-plugin envinject
+
+git add -A
+git commit -m 'Install initial plugins'
+