From ed61c534eea711525913ef3b95c7900b4ead62bf Mon Sep 17 00:00:00 2001 From: Ed Warnicke Date: Thu, 8 Sep 2016 12:39:32 -0700 Subject: [PATCH] First attempt to build vpp doxygen docs Change-Id: I3756dfcd832a4aa8c274abb17b4163f4f53f7d4a Signed-off-by: Ed Warnicke --- jjb/vpp/include-raw-vpp-docs.sh | 63 ++++++++++++++++++++++++++++++++++++++ jjb/vpp/vpp.yaml | 67 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 130 insertions(+) create mode 100644 jjb/vpp/include-raw-vpp-docs.sh diff --git a/jjb/vpp/include-raw-vpp-docs.sh b/jjb/vpp/include-raw-vpp-docs.sh new file mode 100644 index 000000000..076004b13 --- /dev/null +++ b/jjb/vpp/include-raw-vpp-docs.sh @@ -0,0 +1,63 @@ +#!/bin/bash +set -e +[ "$DOCS_REPO_URL" ] || DOCS_REPO_URL="https://nexus.fd.io/content/sites/site/" +[ "$PROJECT_PATH" ] || PROJECT_PATH=io/fd/vpp +[ "$DOCS_FILE" ] || DOC_FILE=vpp.docs.zip +[ "$DOC_DIR" ] || DOC_DIR=build-root/docs/html +if [ ${BRANCH} == "stable/1609"]; then + VERSION=16.09 +else + echo "************************************" + echo "* ${BRANCH} does not publish docs *" + echo "************************************" + exit +fi +MVN="/opt/apache/maven/bin/mvn" + +make doxygen +cd ${DOC_DIR} +zip ${DOC_FILE} . +cat pom.xml << EOF + + 4.0.0 + io.fd.vpp + docs + 1.0.0 + pom + + + + org.apache.maven.plugins + maven-deploy-plugin + 2.8.2 + + true + + + + org.sonatype.plugins + maven-upload-plugin + 0.0.1 + + + publish-site + deploy + + upload-file + + + opendaylight-log-archives + $DOCS_REPO_URL/content-compressed + ${DOC_FILE} + ${PROJECT_PATH} + + + + + + + +EOF +${MVN} deploy -gs $GLOBAL_SETTINGS_FILE -s $SETTINGS_FILE +cd - + diff --git a/jjb/vpp/vpp.yaml b/jjb/vpp/vpp.yaml index cd8c79858..91d2240d5 100644 --- a/jjb/vpp/vpp.yaml +++ b/jjb/vpp/vpp.yaml @@ -4,6 +4,7 @@ - 'vpp-verify-{stream}-{os}' - 'vpp-merge-{stream}-{os}' - 'vpp-verify-image-{stream}-{os}' + - 'vpp-docs-1609' project: 'vpp' os: @@ -337,3 +338,69 @@ name: TYPE default: '{type}' description: "TYPE parameter if not given by trigger" + +- job-template: + name: 'vpp-docs-1609' + + project-type: freestyle + node: 'verify-ubuntu1404' + concurrent: true + + logrotate: + daysToKeep: '{build-days-to-keep}' + numToKeep: '{build-num-to-keep}' + artifactDaysToKeep: '{build-artifact-days-to-keep}' + artifactNumToKeep: '{build-artifact-num-to-keep}' + + parameters: + - project-parameter: + project: '{project}' + - gerrit-parameter: + branch: 'stable/1609' + - os-parameter: + os: 'ubuntu1404' + + scm: + - gerrit-trigger-scm: + credentials-id: '{ssh-credentials}' + refspec: '' + choosing-strategy: 'default' + + wrappers: + - fdio-infra-wrappers + - ssh-agent-credentials: + users: + - '{ssh-credentials}' + + triggers: + - gerrit: + server-name: 'Primary' + trigger-on: + - comment-added-contains-event: + comment-contains-value: 'run-docs' + projects: + - project-compare-type: 'ANT' + project-pattern: '{project}' + branches: + - branch-compare-type: 'ANT' + branch-pattern: '**/stable/1609' + skip-vote: + successful: true + failed: true + unstable: true + notbuilt: true + + builders: + - maven-target: + maven-version: '{mvn33}' + goals: '--version' + settings: 'vpp-settings' + settings-type: cfp + global-settings: 'global-settings' + global-settings-type: cfp + - provide-maven-settings: + settings-file: 'vpp-settings' + global-settings-file: 'global-settings' + - shell: + !include-raw-escape: include-raw-vpp-docs.sh + -- 2.16.6