diff options
author | Nauman Ahad <Nauman_Ahad@dell.com> | 2015-08-18 15:34:45 -0700 |
---|---|---|
committer | Fatih Degirmenci <fatih.degirmenci@ericsson.com> | 2015-08-20 11:37:55 +0000 |
commit | 9c26f11c59228c0e4a430f2badd70e47ca8884b4 (patch) | |
tree | 81d3c719596639cdbc83f004a5fd9a5e8d2f7a39 /jjb/qtip | |
parent | 2676f175322cd8fe8e4c0f9e1e5bbebb712c7ed7 (diff) |
Inclusion of 2 qtip_dhrystone jobs for the Dell Lab
First attempt at modifying/creating a JJB for a test case.
Used guide available at OPNFV wiki and JJBs for other teststing projects such as yardstick as a reference.
To be run on the dell-build node. If works, a job would be made for the LF POD too. Modified to remve white spaces and removed prebuilds
JIRA:QTIP-7
Change-Id: Iffed74a8bae64c4643839c4d2e2cac49a0070d9d
Signed-off-by: Nauman Ahad <Nauman_Ahad@dell.com>
Diffstat (limited to 'jjb/qtip')
-rw-r--r-- | jjb/qtip/qtip.yml | 132 |
1 files changed, 131 insertions, 1 deletions
diff --git a/jjb/qtip/qtip.yml b/jjb/qtip/qtip.yml index ab6dcc49e..bd07facae 100644 --- a/jjb/qtip/qtip.yml +++ b/jjb/qtip/qtip.yml @@ -1,11 +1,17 @@ - project: name: qtip + pod: + - dell-build: + node: 'dell-build' + installer_type: 'foreman' + installer_ip: '172.18.0.12' jobs: - 'qtip-test' - 'qtip-daily-{stream}' - 'qtip-merge' - 'qtip-verify' - + - 'qtip-dhrystone-VM_vs_Baremetal' + - 'qtip_dhrystone-Baremetal_vs_Baremetal' # stream: branch with - in place of / (eg. stable-helium) # branch: branch (eg. stable/helium) stream: @@ -177,3 +183,127 @@ pwd find . echo "merge logic goes here" + + - job-template: + name: 'qtip-dhrystone-VM_vs_Baremetal' + + project-type: freestyle + + disabled: false + + node: '{node}' + + logrotate: + daysToKeep: 30 + numToKeep: 10 + artifactDaysToKeep: -1 + artifactNumToKeep: -1 + + parameters: + - project-parameter: + project: '{project}' + - string: + name: INSTALLER_TYPE + default: '{installer_type}' + description: "Installer name that is used for deployment." + - stirng: + name: INSTALLER_IP + default: '{Installer_ip}' + description "Installer IP" + + scm: + - git-scm: + credentials-id: '{ssh-credentials}' + refspec: '' + branch: master + + builders: + - 'qtip-fetch-os-cred' + - 'qtip-dhrystone-VM_vs_BM' + +- job-template: + name: 'qtip-dhrystone-Baremetal_vs_Baremetal' + + project-type: freestyle + + disabled: false + + node: '{node}' + + logrotate: + daysToKeep: 30 + numToKeep: 10 + artifactDaysToKeep: -1 + artifactNumToKeep: -1 + + parameters: + - project-parameter: + project: '{project}' + - string: + name: INSTALLER_TYPE + default: '{installer_type}' + description: "Installer name that is used for deployment." + - string: + name: INSTALLER_IP + default: '{installer_ip}' + description: "IP address of the installer" + + scm: + - git-scm: + credentials-id: '{ssh-credentials}' + refspec: '' + branch: master + + builders: + - 'qtip-fetch-os-cred' + - 'qtip-dhrystone-BM_vs_BM' + + +########################### +#biuilder macros +########################### +- builder: + name: qtip-dhrystone-VM_vs_BM + + builders: + - shell: | + #! /bin/bash + + + if [[ ! -f $HOME/opnfv-openrc.sh]]; then + echo "Unable to access file $HOME/opnfv-openrc.sh" + exit 1 + fi + source $HOME/opnfv-openrc.sh + cd $WORKSPACE + + + echo "Running QTIP dhrystone with First Test case" + ./QTIP.sh First dhrystone + + +- builder: + name: qtip-dhrystone-BM_vs_BM + + builders: + - shell: | + #!/bin/bash + + + if [[ ! -f $HOME/opnfv-openrc.sh]]; then + echo "Unable to access file $HOME/opnfv-openrc.sh" + exit 1 + fi + source $HOME/opnfv-openrc.sh + cd $WORKSPACE + + + echo "Running QTIP dhrystone with Second Test case" + ./QTIP.sh Second dhrystone + + +- builder: + name: qtip-fetch-os-cred + builders: + - shell: | + !include-raw ../../utils/fetch_os_creds.sh |