X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=jjb%2Fopnfvdocs%2Fopnfvdocs.yml;h=2bf87c2f4398f4a737c18538cabddec8192291a7;hb=aa2f17841fc59cc00bd90daaefc52feef034aa6e;hp=6b8650e8ce9e4e45a81b9f77ed7d6f30808cda04;hpb=5cb38c75cb4a6badb2a5d872fe26e2d26bcdebba;p=releng.git diff --git a/jjb/opnfvdocs/opnfvdocs.yml b/jjb/opnfvdocs/opnfvdocs.yml index 6b8650e8c..2bf87c2f4 100644 --- a/jjb/opnfvdocs/opnfvdocs.yml +++ b/jjb/opnfvdocs/opnfvdocs.yml @@ -16,9 +16,11 @@ - master: branch: '{stream}' gs-pathname: '' - - brahmaputra: + disabled: false + - colorado: branch: 'stable/{stream}' gs-pathname: '/{stream}' + disabled: false ######################## # job templates @@ -27,6 +29,8 @@ - job-template: name: 'opnfvdocs-verify-{stream}' + disabled: '{obj:disabled}' + parameters: - project-parameter: project: $GERRIT_PROJECT @@ -61,19 +65,15 @@ branches: - branch-compare-type: 'ANT' branch-pattern: '**/{branch}' - file-paths: - - compare-type: ANT - pattern: 'docs/**' builders: - - clone-opnfv-repos - - build-html-and-pdf-docs-output - - upload-under-review-docs-to-opnfv-artifacts - - report-docs-build-result-to-gerrit + - check-bash-syntax - job-template: name: 'opnfvdocs-merge-{stream}' + disabled: '{obj:disabled}' + parameters: - project-parameter: project: $GERRIT_PROJECT @@ -106,20 +106,15 @@ branches: - branch-compare-type: 'ANT' branch-pattern: '**/{branch}' - file-paths: - - compare-type: ANT - pattern: 'docs/**' builders: - - clone-opnfv-repos - - build-html-and-pdf-docs-output -# - upload-generated-docs-to-opnfv-artifacts - - report-docs-build-result-to-gerrit - - remove-old-docs-from-opnfv-artifacts + - check-bash-syntax - job-template: name: 'opnfvdocs-daily-{stream}' + disabled: true + parameters: - project-parameter: project: '{project}' @@ -134,7 +129,7 @@ - string: name: GERRIT_BRANCH default: '{branch}' - description: 'Specify the branch in this way in order to be able to use clone-opnfv-repos builder.' + description: 'Specify the branch in this way in order to be able to use build-opnfv-composite-docs builder.' scm: - git-scm: @@ -146,36 +141,6 @@ - timed: '0 H/6 * * *' builders: - - clone-opnfv-repos - build-html-and-pdf-docs-output # - upload-generated-docs-to-opnfv-artifacts -- builder: - name: clone-opnfv-repos - builders: - - shell: | - #!/bin/bash - set -o errexit - set -o nounset - set -o pipefail - - # clone releng repo to get repo list - cd $WORKSPACE - echo "Cloning releng repo" - git clone $GIT_CLONE_BASE/releng --branch master --depth 1 --quiet - - # clone rest of the repos and checkout the branch - echo "Cloning repos of participating OPNFV Projects and checking out $GERRIT_BRANCH" - echo - echo "--------------------------------------------------------" - for repo in $(grep -v '^#' $WORKSPACE/releng/jjb/opnfvdocs/project.cfg | sort); do - cd $WORKSPACE - echo " $repo" - git clone $GIT_CLONE_BASE/$repo --branch $GERRIT_BRANCH --depth 1 --quiet - done - echo "--------------------------------------------------------" - echo - echo "Done" - - # remove releng clone in order not to cause issues for rest of the builders - /bin/rm -rf $WORKSPACE/releng