diff options
author | Ed Warnicke <eaw@cisco.com> | 2016-09-08 12:39:32 -0700 |
---|---|---|
committer | Ed Warnicke <eaw@cisco.com> | 2016-09-08 15:18:27 -0700 |
commit | ed61c534eea711525913ef3b95c7900b4ead62bf (patch) | |
tree | 3ca58548ab7f8ca317923dc33b92031b2aaaadd0 /jjb/vpp | |
parent | d80e609dca81ae088c47b510d93dcd6d28ccae26 (diff) |
First attempt to build vpp doxygen docs
Change-Id: I3756dfcd832a4aa8c274abb17b4163f4f53f7d4a
Signed-off-by: Ed Warnicke <eaw@cisco.com>
Diffstat (limited to 'jjb/vpp')
-rw-r--r-- | jjb/vpp/include-raw-vpp-docs.sh | 63 | ||||
-rw-r--r-- | jjb/vpp/vpp.yaml | 67 |
2 files changed, 130 insertions, 0 deletions
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 +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + <modelVersion>4.0.0</modelVersion> + <groupId>io.fd.vpp</groupId> + <artifactId>docs</artifactId> + <version>1.0.0</version> + <packaging>pom</packaging> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-deploy-plugin</artifactId> + <version>2.8.2</version> + <configuration> + <skip>true</skip> + </configuration> + </plugin> + <plugin> + <groupId>org.sonatype.plugins</groupId> + <artifactId>maven-upload-plugin</artifactId> + <version>0.0.1</version> + <executions> + <execution> + <id>publish-site</id> + <phase>deploy</phase> + <goals> + <goal>upload-file</goal> + </goals> + <configuration> + <serverId>opendaylight-log-archives</serverId> + <repositoryUrl>$DOCS_REPO_URL/content-compressed</repositoryUrl> + <file>${DOC_FILE}</file> + <repositoryPath>${PROJECT_PATH}</repositoryPath> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> +</project> +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 + |