X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=jjb%2Ffunctest%2Ffunctest.yml;h=1f284f08a00088419c22b46bfbb32d1323f96acc;hb=57b3052812acb12cd14e5f548688dbaf08f288cc;hp=9c1ca084a665326de528ea5f51bc64ee120c521e;hpb=3a58ada482a61762854c8f0285714f291dc698d8;p=releng.git diff --git a/jjb/functest/functest.yml b/jjb/functest/functest.yml index 9c1ca084a..1f284f08a 100644 --- a/jjb/functest/functest.yml +++ b/jjb/functest/functest.yml @@ -1,31 +1,77 @@ +################################### +# job configuration for functest +################################### - project: name: functest + pod: + - 'opnfv-jump-1' + - 'opnfv-jump-2' + - 'orange-build' jobs: - - 'functest-vim_bench-test' - - 'functest-vim_tempest-test' - - 'functest-odl-test' - - 'functest-vims-test' - - 'functest-vping-test' + - 'functest-{pod}' + - 'set-functest-env-{pod}' + - 'clean-functest-env-{pod}' + - 'functest-openstack-bench-test-{pod}' + - 'functest-openstack-tempest-smoke-test-{pod}' + - 'functest-odl-test-{pod}' + - 'functest-vims-test-{pod}' + - 'functest-vping-test-{pod}' - 'functest-daily-{stream}' - 'functest-merge' - - 'functest-verify' + - 'functest-verify-{stream}' - # stream: branch with - in place of / (eg. stable-helium) - # branch: branch (eg. stable/helium) + # stream: branch with - in place of / (eg. stable-arno) + # branch: branch (eg. stable/arno) stream: - master: branch: 'master' + gs-pathname: '' + - stable-arno: + branch: 'stable/arno' + gs-pathname: '/arno' project: 'functest' somevar: 'foo' +################################ +# job template +################################ +- job-template: + name: set-functest-env-{pod} + + project-type: freestyle + + node: '{pod}' + + logrotate: + daysToKeep: 30 + numToKeep: 10 + artifactDaysToKeep: -1 + artifactNumToKeep: -1 + + builders: + - shell: | + #!/bin/bash + set +e + + echo "Functest: prepare Functest environment" + mkdir -p $HOME/functest/ + source $HOME/functest/opnfv-openrc.sh + + # WORKSPACE is the root of the functest repo + # go into WORKSPACE where the functest repo is cloned + cd $WORKSPACE + # prepare + echo "Functest: prepare Functest environment" + python $WORKSPACE/testcases/config_functest.py --debug $WORKSPACE/ start + - job-template: - name: functest-vim_bench-test + name: clean-functest-env-{pod} project-type: freestyle - node: orange-build + node: '{pod}' logrotate: daysToKeep: 30 @@ -35,14 +81,28 @@ builders: - shell: | - python run_rally.py keystone + #!/bin/bash + set +e + + # collect results + echo "Functest: copy results and clean Functest environment" + mkdir -p $HOME/functest/results + + # save ODL results + cp -Rf $WORSPACE/testcases/Controllers/ODL/CI/logs $HOME/functest/results/ODL + + # save tempest.conf for further troubleshooting + cp $HOME/.rally/tempest/for-deployment-*/tempest.conf $HOME/functest/results + + # cleanup + python $WORKSPACE/testcases/config_functest.py --debug --force $WORKSPACE/ clean - job-template: - name: functest-vim_tempest-test + name: functest-openstack-bench-test-{pod} project-type: freestyle - node: orange-build + node: '{pod}' logrotate: daysToKeep: 30 @@ -52,14 +112,18 @@ builders: - shell: | - rally verify start + #!/bin/bash + set +e + + echo "Functest: run Functest Rally Bench suites" + python $WORKSPACE/testcases/VIM/OpenStack/CI/libraries/run_rally.py --debug $WORKSPACE/ all - job-template: - name: functest-odl-test + name: functest-openstack-tempest-smoke-test-{pod} project-type: freestyle - node: ericsson-build + node: '{pod}' logrotate: daysToKeep: 30 @@ -69,14 +133,20 @@ builders: - shell: | - echo "put your CI scenario here" + #!/bin/bash + set +e + + # tempest + echo "Functest: run Tempest suite" + rally verify start smoke + rally verify list - job-template: - name: functest-vims-test + name: functest-odl-test-{pod} project-type: freestyle - node: ericsson-build + node: '{pod}' logrotate: daysToKeep: 30 @@ -86,14 +156,19 @@ builders: - shell: | - echo "put your CI scenario here" + #!/bin/bash + set +e + echo "Functest: run ODL suite" + $WORKSPACE/testcases/Controllers/ODL/CI/start_tests.sh - job-template: - name: functest-vping-test + name: functest-vims-test-{pod} project-type: freestyle + node: '{pod}' + logrotate: daysToKeep: 30 numToKeep: 10 @@ -105,10 +180,62 @@ echo "put your CI scenario here" +- job-template: + name: functest-vping-test-{pod} + + project-type: freestyle + + node: '{pod}' + + logrotate: + daysToKeep: 30 + numToKeep: 10 + artifactDaysToKeep: -1 + artifactNumToKeep: -1 + + builders: + - shell: | + #!/bin/bash + set +e + + # vPing + echo "Functest: run vPing" + python $WORKSPACE/testcases/vPing/CI/libraries/vPing.py --debug $WORKSPACE/ + +- job-template: + name: functest-{pod} + + project-type: freestyle + + node: '{pod}' + + parameters: + - project-parameter: + project: '{project}' + - '{pod}' + + scm: + - git-scm: + credentials-id: '{ssh-credentials}' + refspec: '' + branch: master + + logrotate: + daysToKeep: 30 + numToKeep: 10 + artifactDaysToKeep: -1 + artifactNumToKeep: -1 + + builders: + - 'functest-all' + - 'functest-store-results' + - 'functest-cleanup' - job-template: name: 'functest-daily-{stream}' + node: master + # Job template for daily builders # # Required Variables: @@ -127,32 +254,36 @@ parameters: - project-parameter: project: '{project}' + - functest-parameter: + gs-pathname: '{gs-pathname}' scm: - git-scm: credentials-id: '{ssh-credentials}' refspec: '' - branch: '{branch}' + branch: '{stream}' wrappers: - ssh-agent-credentials: user: '{ssh-credentials}' triggers: - - timed: 'H H * * *' + - 'functest-{stream}' prebuilders: - test-macro builders: - shell: - !include-raw build-docu.sh + !include-raw ../opnfvdocs/docu-build.sh postbuilders: - test-macro - job-template: - name: 'functest-verify' + name: 'functest-verify-{stream}' + + node: master project-type: freestyle @@ -166,7 +297,7 @@ - project-parameter: project: '{project}' - gerrit-parameter: - branch: 'master' + branch: '{branch}' scm: - gerrit-trigger-scm: credentials-id: '{ssh-credentials}' @@ -194,15 +325,17 @@ project-pattern: 'functest' branches: - branch-compare-type: 'ANT' - branch-pattern: '**/master' + branch-pattern: '**/{branch}' builders: - shell: - !include-raw build-docu.sh + !include-raw ../opnfvdocs/docu-build.sh - job-template: name: 'functest-merge' + node: master + # builder-merge job to run JJB update # # This job's purpose is to update all the JJB @@ -245,6 +378,118 @@ branch-pattern: '**/master' builders: - - shell: - !include-raw build-docu.sh + - shell: + !include-raw ../opnfvdocs/docu-build.sh + +######################## +# parameter macros +######################## +- parameter: + name: functest-parameter + parameters: + - string: + name: GS_PATHNAME + default: '{gs-pathname}' + description: "Version directory where the opnfv documents will be stored in gs repository" + +- parameter: + name: orange-build + parameters: + - string: + name: GIT_BASE + default: https://gerrit.opnfv.org/gerrit/$PROJECT + description: "Override GIT_BASE" + +- parameter: + name: opnfv-jump-1 + parameters: + - string: + name: GIT_BASE + default: ssh://gerrit.opnfv.org:29418/$PROJECT + description: "Override GIT_BASE" + +- parameter: + name: opnfv-jump-2 + parameters: + - string: + name: GIT_BASE + default: ssh://gerrit.opnfv.org:29418/$PROJECT + description: "Override GIT_BASE" +######################## +# trigger macros +######################## +- trigger: + name: 'functest-master' + triggers: + - pollscm: "H 9 * * *" + +- trigger: + name: 'functest-stable-arno' + triggers: + - pollscm: "H 21 * * *" + +######################## +# builder macros +######################## +# macros +- builder: + name: functest-all + builders: + - shell: | + #!/bin/bash + set +e + + echo "Functest: prepare Functest environment" + mkdir -p $HOME/functest/ + source $HOME/functest/opnfv-openrc.sh + + # WORKSPACE is the root of the functest repo + # go into WORKSPACE where the functest repo is cloned + cd $WORKSPACE + + # prepare + echo "Functest: prepare Functest environment" + python $WORKSPACE/testcases/config_functest.py --debug $WORKSPACE/ start + + # vPing + echo "Functest: run vPing" + python $WORKSPACE/testcases/vPing/CI/libraries/vPing.py --debug $WORKSPACE/ + + # ODL + echo "Functest: run ODL suite" + $WORKSPACE/testcases/Controllers/ODL/CI/start_tests.sh + + # rally + echo "Functest: run Functest Rally Bench suites" + python $WORKSPACE/testcases/VIM/OpenStack/CI/libraries/run_rally.py --debug $WORKSPACE/ all + + # tempest + echo "Functest: run Tempest suite" + rally verify start smoke + rally verify list + + # collect results + echo "Functest: copy results and clean Functest environment" + mkdir -p $HOME/functest/results + + # save ODL results + cp -Rf $WORKSPACE/testcases/Controllers/ODL/CI/logs $HOME/functest/results/ODL + + # save tempest.conf for further troubleshooting + cp $HOME/.rally/tempest/for-deployment-*/tempest.conf $HOME/functest/results + +- builder: + name: functest-store-results + builders: + - shell: + !include-raw res-build.sh + +- builder: + name: functest-cleanup + builders: + - shell: | + #!/bin/bash + set +e + # cleanup + python $WORKSPACE/testcases/config_functest.py --debug --force $WORKSPACE/ clean