Zack Williams | cee76d2 | 2019-04-29 13:08:20 -0700 | [diff] [blame] | 1 | --- |
| 2 | # Makefile based unit test |
| 3 | |
| 4 | - job-template: |
| 5 | id: 'make-unit-test' |
| 6 | name: 'verify_{project}_unit-test{name-extension}' |
| 7 | |
| 8 | description: | |
| 9 | Created by {id} job-template from ci-management/jjb/make-unit.yaml<br/> |
| 10 | Runs make with the following unit tests targets - '{unit-test-targets}' |
| 11 | |
| 12 | triggers: |
| 13 | - cord-infra-gerrit-trigger-patchset: |
| 14 | gerrit-server-name: '{gerrit-server-name}' |
| 15 | project-regexp: '^{project}$' |
| 16 | branch-regexp: '{branch-regexp}' |
| 17 | dependency-jobs: '{dependency-jobs}' |
| 18 | file-include-regexp: '{all-files-regexp}' |
| 19 | |
| 20 | properties: |
| 21 | - cord-infra-properties: |
| 22 | build-days-to-keep: '{build-days-to-keep}' |
| 23 | artifact-num-to-keep: '{artifact-num-to-keep}' |
| 24 | |
| 25 | wrappers: |
| 26 | - lf-infra-wrappers: |
| 27 | build-timeout: '{build-timeout}' |
| 28 | jenkins-ssh-credential: '{jenkins-ssh-credential}' |
| 29 | |
| 30 | scm: |
| 31 | - cord-infra-gerrit-scm: |
| 32 | git-url: '$GIT_URL/$GERRIT_PROJECT' |
| 33 | refspec: '$GERRIT_REFSPEC' |
| 34 | branch: '$GERRIT_BRANCH' |
| 35 | submodule-recursive: 'false' |
| 36 | choosing-strategy: gerrit |
| 37 | jenkins-ssh-credential: '{jenkins-ssh-credential}' |
| 38 | basedir: '{project}' |
| 39 | |
| 40 | node: '{build-node}' |
| 41 | project-type: freestyle |
| 42 | concurrent: true |
| 43 | |
| 44 | builders: |
| 45 | - inject: |
| 46 | properties-content: | |
| 47 | DEST_GOPATH={dest-gopath} |
| 48 | UNIT_TEST_TARGETS={unit-test-targets} |
| 49 | UNIT_TEST_KEEP_GOING={unit-test-keep-going} |
Andy Bavier | 028398c | 2019-09-30 17:44:19 -0700 | [diff] [blame] | 50 | GOPROXY=https://proxy.golang.org |
Zack Williams | cee76d2 | 2019-04-29 13:08:20 -0700 | [diff] [blame] | 51 | - shell: !include-raw-escape: shell/make-unit.sh |
| 52 | |
| 53 | publishers: |
| 54 | - junit: |
| 55 | results: "**/*results.xml,**/*report.xml" |
| 56 | allow-empty-results: '{junit-allow-empty-results}' |
Zack Williams | 3715d58 | 2020-02-24 10:40:27 -0700 | [diff] [blame] | 57 | - xunit: |
| 58 | types: |
Zack Williams | 1140e3b | 2020-02-24 15:06:46 -0700 | [diff] [blame] | 59 | - gtest: |
Zack Williams | 3715d58 | 2020-02-24 10:40:27 -0700 | [diff] [blame] | 60 | pattern: "**/*xunit.xml" |
| 61 | deleteoutput: false |
| 62 | skip-if-no-test-files: '{xunit-skip-if-no-test-files}' |
Zack Williams | cee76d2 | 2019-04-29 13:08:20 -0700 | [diff] [blame] | 63 | - cobertura: |
| 64 | report-file: "**/*coverage.xml" |
| 65 | targets: |
| 66 | - files: |
| 67 | healthy: 80 |
| 68 | unhealthy: 0 |
| 69 | failing: 0 |
| 70 | - method: |
| 71 | healthy: 50 |
| 72 | unhealthy: 0 |
| 73 | failing: 0 |