Zack Williams | 2d0de7e | 2018-07-06 17:59:17 -0700 | [diff] [blame] | 1 | --- |
| 2 | # verification jobe for voltha |
| 3 | |
| 4 | - job-template: |
| 5 | id: 'voltha-unit-test' |
| 6 | name: '{project}_unit-test' |
| 7 | |
| 8 | description: | |
| 9 | Created by {id} job-template from ci-management/jjb/voltha-unit-test.yaml |
| 10 | |
| 11 | triggers: |
| 12 | - cord-infra-gerrit-trigger-patchset: |
| 13 | gerrit-server-name: '{gerrit-server-name}' |
| 14 | project-regexp: '^{project}$' |
| 15 | branch-regexp: '{branch-regexp}' |
| 16 | file-include-regexp: '{all-files-regexp}' |
| 17 | dependency-jobs: '{dependency-jobs}' |
| 18 | |
| 19 | properties: |
| 20 | - cord-infra-properties: |
| 21 | build-days-to-keep: '{build-days-to-keep}' |
| 22 | artifact-num-to-keep: '{artifact-num-to-keep}' |
| 23 | |
| 24 | wrappers: |
| 25 | - lf-infra-wrappers: |
| 26 | build-timeout: 20 |
| 27 | jenkins-ssh-credential: '{jenkins-ssh-credential}' |
| 28 | |
| 29 | scm: |
| 30 | - lf-infra-gerrit-scm: |
| 31 | git-url: '$GIT_URL/$GERRIT_PROJECT' |
| 32 | refspec: '$GERRIT_REFSPEC' |
| 33 | branch: '$GERRIT_BRANCH' |
| 34 | submodule-recursive: 'false' |
| 35 | choosing-strategy: gerrit |
| 36 | jenkins-ssh-credential: '{jenkins-ssh-credential}' |
| 37 | |
Kailash | 5c487b1 | 2019-03-05 11:20:21 -0800 | [diff] [blame] | 38 | node: 'ubuntu16.04-basebuild-4c-8g' |
Zack Williams | 2d0de7e | 2018-07-06 17:59:17 -0700 | [diff] [blame] | 39 | project-type: freestyle |
| 40 | concurrent: true |
| 41 | |
| 42 | builders: |
| 43 | - shell: | |
| 44 | #!/usr/bin/env bash |
Zack Williams | ecec905 | 2018-07-09 16:23:19 -0700 | [diff] [blame] | 45 | set -e -o pipefail |
Zack Williams | 2d0de7e | 2018-07-06 17:59:17 -0700 | [diff] [blame] | 46 | |
| 47 | rm -rf venv-linux |
| 48 | source ./env.sh |
| 49 | |
| 50 | make utest-with-coverage |
| 51 | |
Zack Williams | ecec905 | 2018-07-09 16:23:19 -0700 | [diff] [blame] | 52 | publishers: |
| 53 | - junit: |
Zack Williams | e8e5ebe | 2019-01-25 15:24:01 -0700 | [diff] [blame] | 54 | results: "**/nosetests.xml,**/junit-report.xml" |
Zack Williams | ecec905 | 2018-07-09 16:23:19 -0700 | [diff] [blame] | 55 | - cobertura: |
| 56 | report-file: "**/coverage.xml" |
| 57 | targets: |
| 58 | - files: |
| 59 | healthy: 80 |
| 60 | unhealthy: 0 |
| 61 | failing: 0 |
| 62 | - method: |
| 63 | healthy: 50 |
| 64 | unhealthy: 0 |
| 65 | failing: 0 |