diff options
Diffstat (limited to 'jjb/availability/availability.yml')
-rw-r--r-- | jjb/availability/availability.yml | 120 |
1 files changed, 29 insertions, 91 deletions
diff --git a/jjb/availability/availability.yml b/jjb/availability/availability.yml index e8fb4300c..847880232 100644 --- a/jjb/availability/availability.yml +++ b/jjb/availability/availability.yml @@ -1,69 +1,41 @@ +################################################### +# All the jobs except verify have been removed! +# They will only be enabled on request by projects! +################################################### - project: name: availability + + project: '{name}' + jobs: - - 'availability-test' - - 'availability-daily-{stream}' - - 'availability-merge' - - 'availability-verify' + - 'availability-verify-{stream}' - # stream: branch with - in place of / (eg. stable-arno) - # branch: branch (eg. stable/arno) +# only master branch is enabled at the moment to keep no of jobs sane stream: - master: branch: 'master' + gs-pathname: '' +# - stable-brahmaputra: +# branch: 'stable/brahmaputra' +# gs-pathname: '/brahmaputra' - project: 'availability' - somevar: 'foo' - -- job-template: - name: availability-test - - builders: - - shell: | - echo "Hello world from availability" - -- job-template: - name: 'availability-daily-{stream}' - - # Job template for daily builders - # - # Required Variables: - # stream: branch with - in place of / (eg. stable) - # branch: branch (eg. stable) - - varsetabove: '{somevar}' +- job_defaults: &availability_job_defaults + name: availability_job_defaults parameters: - project-parameter: project: '{project}' - - scm: - - git-scm: - credentials-id: '{ssh-credentials}' - refspec: '' - branch: '{branch}' - - triggers: - - timed: 'H H * * *' - - prebuilders: - - test-macro - - builders: - - shell: - !include-raw docu-build.sh - - postbuilders: - - test-macro + - gerrit-parameter: + branch: '{stream}' - job-template: - name: 'availability-verify' + name: 'availability-verify-{stream}' + + <<: *availability_job_defaults parameters: - - project-parameter: - project: '{project}' - - gerrit-parameter: - branch: 'master' + - 'opnfv-build-defaults' + scm: - gerrit-trigger-scm: credentials-id: '{ssh-credentials}' @@ -84,48 +56,14 @@ comment-contains-value: 'reverify' projects: - project-compare-type: 'ANT' - project-pattern: 'availability' + project-pattern: '{project}' branches: - branch-compare-type: 'ANT' - branch-pattern: '**/master' - - builders: - - shell: - !include-raw docu-build.sh - -- job-template: - name: 'availability-merge' - - # builder-merge job to run JJB update - # - # This job's purpose is to update all the JJB - - parameters: - - project-parameter: - project: '{project}' - - gerrit-parameter: - branch: 'master' - - scm: - - gerrit-trigger-scm: - credentials-id: '{ssh-credentials}' - refspec: '' - choosing-strategy: 'default' - - triggers: - - gerrit: - trigger-on: - - change-merged-event - - comment-added-contains-event: - comment-contains-value: 'remerge' - projects: - - project-compare-type: 'ANT' - project-pattern: 'availability' - branches: - - branch-compare-type: 'ANT' - branch-pattern: '**/master' + branch-pattern: '**/{stream}' + forbidden-file-paths: + - compare-type: ANT + pattern: 'docs/**|.gitignore' builders: - - shell: - !include-raw docu-build.sh - + - shell: | + echo "Nothing to verify!" |