adding physical build+test jobs on micro charts
Change-Id: Icd9fc0ac704bee980103e7dc030f8961a2aca0d7
diff --git a/jjb/cord-test/nightly-build-pipeline.yaml b/jjb/cord-test/nightly-build-pipeline.yaml
index cad61a1..81cb3f6 100644
--- a/jjb/cord-test/nightly-build-pipeline.yaml
+++ b/jjb/cord-test/nightly-build-pipeline.yaml
@@ -352,7 +352,6 @@
jobs: 'build_{profile}_{config-pod}_{branch}'
result: 'failure'
-
- job-template:
name: 'build_{config-pod}_seba_release_{release}'
id: build_pod_manual_release
@@ -542,6 +541,99 @@
TZ=America/Los_Angeles
H {time} * * *
+
+- job-template:
+ name: 'build_{config-pod}_seba_release_{release}_microcharts'
+ id: build_pod_manual_release_micro
+ description: |
+ <!-- Managed by Jenkins Job Builder -->
+ Manual Build on POD {config-pod} using {Jenkinsfile} <br /><br />
+ Created from job-template {id} from ci-management/jjb/cord-test/cord-test-pipeline.yaml <br />
+ Created by QA (Suchitra Vemuri - suchitra@opennetworking.org ) <br />
+ Copyright (c) 2018 Open Networking Foundation (ONF)
+
+ <<: *test-pipe-job-boiler-plate
+
+ parameters:
+ - string:
+ name: TestNodeName
+ default: '{testvm}'
+ description: 'Jenkins node name of TestVM Node'
+
+ - string:
+ name: cordRepoUrl
+ default: '{gerrit-server-url}'
+ description: 'The URL of the CORD Project repository'
+
+ - string:
+ name: configBaseDir
+ default: 'pod-configs'
+ description: 'The directory inside the POD configs repository'
+
+ - string:
+ name: configDeploymentDir
+ default: 'deployment-configs'
+ description: 'The deployment configs folder'
+
+ - string:
+ name: configKubernetesDir
+ default: 'kubernetes-configs'
+ description: 'The kubernetes config folder'
+
+ - string:
+ name: configToscaDir
+ default: 'tosca-configs'
+ description: 'The tosca config folder'
+
+ - string:
+ name: configFileName
+ default: '{config-pod}'
+ description: 'The config file'
+
+ - string:
+ name: oltDebVersion
+ default: '{oltDebVersion}'
+ description: 'OLT Software version to install'
+
+ - string:
+ name: branch
+ default: '{branch}'
+
+ - string:
+ name: notificationEmail
+ default: 'kailash@opennetworking.org, you@opennetworking.org, suchitra@opennetworking.org'
+ description: ''
+
+ - bool:
+ name: configurePod
+ default: true
+ description: "Configure POD via TOSCA post build"
+
+ - bool:
+ name: reinstallOlt
+ default: true
+ description: "Re-install olt software bringing up CORD"
+
+ - bool:
+ name: installBBSim
+ default: false
+ description: "Install the BBSim container"
+
+ - string:
+ name: onuNumber
+ default: '16'
+ description: "Onus per PonPort"
+
+ concurrent: true
+
+ pipeline-scm:
+ script-path: '{Jenkinsfile}'
+ scm:
+ - git:
+ url: '{gerrit-server-url}/cord-tester'
+ branches:
+ - '{branch}'
+
- job-template:
name: 'build_{config-pod}_seba_release_{release}_test'
id: build_pod_release_test
@@ -613,3 +705,76 @@
- reverse:
jobs: 'build_{config-pod}_seba_release_{release}'
result: 'success'
+
+
+- job-template:
+ name: 'build_{config-pod}_seba_release_{release}_microcharts_test'
+ id: build_pod_release_test_microcharts
+ description: |
+ <!-- Managed by Jenkins Job Builder -->
+ Post Tests on {config-pod} triggered by build_{config-pod}_{branch} <br /><br />
+ Created from job-template {id} from ci-management/jjb/cord-test/cord-test-pipeline.yaml <br />
+ Created by Kailash Khalasi - kailash@opennetworking.org <br />
+ Copyright (c) 2017 Open Networking Foundation (ONF)
+
+ <<: *test-pipe-job-boiler-plate
+
+ parameters:
+ - string:
+ name: TestNodeName
+ default: '{testvm}'
+ description: 'Jenkins node name of TestVM Node'
+
+ - string:
+ name: cordRepoUrl
+ default: '{gerrit-server-url}'
+ description: 'The URL of the CORD Project repository'
+
+ - string:
+ name: configBaseDir
+ default: 'pod-configs'
+ description: 'The directory inside the POD configs repository'
+
+ - string:
+ name: configDeploymentDir
+ default: 'deployment-configs'
+ description: 'The deployment configs folder'
+
+ - string:
+ name: configKubernetesDir
+ default: 'kubernetes-configs'
+ description: 'The kubernetes config folder'
+
+ - string:
+ name: configToscaDir
+ default: 'tosca-configs'
+ description: 'The tosca config folder'
+
+ - string:
+ name: configFileName
+ default: '{config-pod}'
+ description: 'The config file'
+
+ - string:
+ name: branch
+ default: '{branch}'
+
+ - string:
+ name: notificationEmail
+ default: 'kailash@opennetworking.org, you@opennetworking.org, suchitra@opennetworking.org'
+ description: ''
+
+ concurrent: true
+
+ pipeline-scm:
+ script-path: '{Jenkinsfile}'
+ scm:
+ - git:
+ url: '{gerrit-server-url}/cord-tester'
+ branches:
+ - '{branch}'
+
+ triggers:
+ - reverse:
+ jobs: 'build_{config-pod}_seba_release_{release}_microcharts'
+ result: 'success'
diff --git a/jjb/cord-test/seba-release.yaml b/jjb/cord-test/seba-release.yaml
index 86bfb42..2834842 100644
--- a/jjb/cord-test/seba-release.yaml
+++ b/jjb/cord-test/seba-release.yaml
@@ -44,3 +44,20 @@
release: '1.0'
branch: 'master'
Jenkinsfile: 'Jenkinsfile-attworkflow-test'
+
+ # flex-pod1-olt pod build
+ - 'build_pod_manual_release_micro':
+ testvm: 'qa-testvm-pod'
+ config-pod: 'flex-pod1-olt'
+ release: '1.0'
+ branch: 'master'
+ Jenkinsfile: 'Jenkinsfile-attworkflow-build'
+ oltDebVersion: 'openolt-master.deb'
+
+ # flex pod1 with olt/onu - release 1.0 test job
+ - 'build_pod_release_test_microcharts':
+ testvm: 'qa-testvm-pod'
+ config-pod: 'flex-pod1-olt'
+ release: '1.0'
+ branch: 'master'
+ Jenkinsfile: 'Jenkinsfile-attworkflow-test'