summaryrefslogtreecommitdiffstats
path: root/jjb/integration/integration-templates-csit.yaml
diff options
context:
space:
mode:
authorGary Wu <gary.i.wu@huawei.com>2017-07-13 12:32:14 -0700
committerGary Wu <gary.i.wu@huawei.com>2017-07-18 13:57:52 -0700
commit0bb72f535f0dae9f0573b50b867fa0ded7c03b31 (patch)
treeb8fd16cf51cd6f2e71f2632ef7ef083cfa528f20 /jjb/integration/integration-templates-csit.yaml
parent23c8a49a3bce44eccfddd117ce2346c067f8d7aa (diff)
Integration: Add job for CSIT sample test plan
Change-Id: I3a6ff36dc9f704b33799bba97b57206488d0d7ff Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
Diffstat (limited to 'jjb/integration/integration-templates-csit.yaml')
-rw-r--r--jjb/integration/integration-templates-csit.yaml111
1 files changed, 111 insertions, 0 deletions
diff --git a/jjb/integration/integration-templates-csit.yaml b/jjb/integration/integration-templates-csit.yaml
new file mode 100644
index 000000000..f12bcfbec
--- /dev/null
+++ b/jjb/integration/integration-templates-csit.yaml
@@ -0,0 +1,111 @@
+---
+- job-template:
+ name: '{project-name}-{stream}-verify-csit-{functionality}'
+ disabled: false
+
+ project-type: freestyle
+ build-node: 'ubuntu1604-docker-8c-8g'
+ node: '{build-node}'
+
+ properties:
+ - lf-infra-properties:
+ project: '{project-name}'
+ build-days-to-keep: '{build-days-to-keep}'
+
+ parameters:
+ - infra-parameters:
+ project: '{project-name}'
+ branch: '{branch}'
+ refspec: 'refs/heads/{branch}'
+ artifacts: '{archive-artifacts}'
+ - integration-test-plan:
+ test-plan: 'plans/{project-name}/{functionality}'
+ - integration-test-options:
+ test-options: '{robot-options}'
+
+ scm:
+ - gerrit-trigger-scm:
+ refspec: '$GERRIT_REFSPEC'
+ choosing-strategy: 'gerrit'
+ submodule-recursive: '{submodule-recursive}'
+
+ wrappers:
+ - lf-infra-wrappers:
+ build-timeout: '{build-timeout}'
+ jenkins-ssh-credential: '{jenkins-ssh-credential}'
+
+ triggers:
+ - gerrit-trigger-patch-submitted:
+ server: '{server-name}'
+ project: 'integration'
+ branch: '{branch}'
+ files: 'test/csit/**/{project-name}/**'
+
+ builders:
+ - integration-install-robotframework
+ - inject:
+ properties-file: 'env.properties'
+ - integration-run-test
+
+ publishers:
+ - integration-robot:
+ unstable-if: 0.0
+ pass-if: 100.0
+ - lf-infra-publish
+
+- job-template:
+ name: '{project-name}-{stream}-csit-{functionality}'
+ disabled: false
+
+ project-type: freestyle
+ build-node: 'ubuntu1604-docker-8c-8g'
+ node: '{build-node}'
+
+ properties:
+ - lf-infra-properties:
+ project: '{project-name}'
+ build-days-to-keep: '{build-days-to-keep}'
+
+ parameters:
+ - infra-parameters:
+ project: '{project-name}'
+ branch: '{branch}'
+ refspec: 'refs/heads/{branch}'
+ artifacts: '{archive-artifacts}'
+ - integration-test-plan:
+ test-plan: 'plans/{project-name}/{functionality}'
+ - integration-test-options:
+ test-options: '{robot-options}'
+
+ scm:
+ - gerrit-trigger-scm:
+ refspec: ''
+ choosing-strategy: 'default'
+ submodule-recursive: '{submodule-recursive}'
+
+ wrappers:
+ - lf-infra-wrappers:
+ build-timeout: '{build-timeout}'
+ jenkins-ssh-credential: '{jenkins-ssh-credential}'
+
+ triggers:
+ - gerrit-trigger-patch-merged:
+ server: '{server-name}'
+ project: 'integration'
+ branch: '{branch}'
+ files: 'test/csit/**/{project-name}/**'
+ - timed: '@daily'
+ - reverse:
+ jobs: '{obj:trigger_jobs}'
+
+ builders:
+ - integration-install-robotframework
+ - inject:
+ properties-file: 'env.properties'
+ - integration-run-test
+
+ publishers:
+ - integration-robot:
+ unstable-if: 0.0
+ pass-if: 100.0
+ - lf-infra-publish