diff options
author | Gary Wu <gary.i.wu@huawei.com> | 2017-06-16 13:44:28 -0700 |
---|---|---|
committer | Gary Wu <gary.i.wu@huawei.com> | 2017-06-16 13:44:28 -0700 |
commit | 213a8351fd266294e17a862b4d223c1968800a09 (patch) | |
tree | 0eaa87c3253da9f65fcbaf514c6b2baaf06fa162 /bootstrap/jenkins/vagrant/jjb-init.sh | |
parent | 06a50674c025c198585a6de4e6bb035cde63832d (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/jjb-init.sh')
-rwxr-xr-x | bootstrap/jenkins/vagrant/jjb-init.sh | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/bootstrap/jenkins/vagrant/jjb-init.sh b/bootstrap/jenkins/vagrant/jjb-init.sh new file mode 100755 index 000000000..01cfcfada --- /dev/null +++ b/bootstrap/jenkins/vagrant/jjb-init.sh @@ -0,0 +1,34 @@ +#!/bin/bash + +git add -A +git commit -m 'Installed plugins, restarted Jenkins' + + +mkdir -p ~/.config/jenkins_jobs +cp /vagrant/jenkins_jobs.ini ~/.config/jenkins_jobs + +pip install --user jenkins-job-builder + +jenkins-job-builder update -r /vagrant/jjb + +cat > .gitignore <<EOF +jobs/*/builds +jobs/*/last* +workspace/ +.m2/repository/ +logs/ +EOF + +git add -A +git commit -m 'Set up initial jobs' + + +# pull 3rd party docker images +docker pull ubuntu:14.04 +docker pull ubuntu:16.04 +docker pull openjdk:8-jre +docker pull tomcat:8.0-jre8 +docker pull jetty:9.3-jre8 +docker pull frolvlad/alpine-oraclejdk8:slim +docker pull java:openjdk-8-jre +docker pull node:4.6.0 |