summaryrefslogtreecommitdiffstats
path: root/jjb/doc/doc-install-plantuml.sh
diff options
context:
space:
mode:
authorRich Bennett <rb2745@att.com>2018-08-28 21:21:29 -0400
committerRich Bennett <rb2745@att.com>2018-08-28 21:36:41 -0400
commit4d4d7e7d045dcc7af788d0aa72127fcea2b187e2 (patch)
tree7a5d0bffd746bc62a03de783864ffb474a7ef678 /jjb/doc/doc-install-plantuml.sh
parent6b066f84c54074eb3ca8935be731400af4eaa2b7 (diff)
Display UML diagrams for doc gerrit reviews
Install plantuml as part of the verify build step before sphinx html builder runs. UML diagrams will then be included with the verify job archived html folder for use in gerrit code reviews. Change-Id: I7eb1b42d57d5352257a43f5e5d9ef1ef9a175d11 Issue-ID: DOC-314 Signed-off-by: Rich Bennett <rb2745@att.com>
Diffstat (limited to 'jjb/doc/doc-install-plantuml.sh')
-rw-r--r--jjb/doc/doc-install-plantuml.sh19
1 files changed, 19 insertions, 0 deletions
diff --git a/jjb/doc/doc-install-plantuml.sh b/jjb/doc/doc-install-plantuml.sh
new file mode 100644
index 000000000..0f5aedda5
--- /dev/null
+++ b/jjb/doc/doc-install-plantuml.sh
@@ -0,0 +1,19 @@
+#!/bin/bash
+set -x
+if [ ! -d /usr/share/plantuml ]
+ then
+ sudo mkdir -p /usr/share/plantuml
+ cd /usr/share/plantuml
+ sudo wget https://nexus.onap.org/service/local/repositories/central/content/net/sourceforge/plantuml/plantuml/8059/plantuml-8059.jar
+ sudo mv plantuml-8059.jar plantuml.jar
+ fi
+
+if [ ! -f /usr/bin/plantuml ]
+ then
+ sudo touch /usr/bin/plantuml
+ sudo chmod +w /usr/bin/plantuml
+ echo "#!/bin/bash" > /tmp/x.$$
+ echo "java -jar /usr/share/plantuml/plantuml.jar \$@" >> /tmp/x.$$
+ sudo cp /tmp/x.$$ /usr/bin/plantuml
+ sudo chmod +x /usr/bin/plantuml
+ fi