Zack Williams | a9af8f0 | 2018-11-20 14:27:48 -0700 | [diff] [blame] | 1 | --- |
| 2 | # verification jobs for 'sadis-server' repo |
| 3 | |
| 4 | - project: |
| 5 | name: sadis-server |
| 6 | project: '{name}' |
| 7 | |
| 8 | jobs: |
| 9 | - 'verify-sadis-server-jobs': |
| 10 | branch-regexp: '{supported-branches-regexp}' |
| 11 | |
| 12 | - job-group: |
| 13 | name: 'verify-sadis-server-jobs' |
| 14 | jobs: |
| 15 | - 'verify-licensed' |
| 16 | - 'tag-collision-reject': |
| 17 | dependency-jobs: 'verify_sadis-server_licensed' |
| 18 | - 'verify-sonarqube': |
| 19 | dependency-jobs: 'verify_sadis-server_tag-collision' |
| 20 | - 'sadis-server-tests': |
| 21 | dependency-jobs: 'verify_sadis-server_sonarqube' |
| 22 | |
| 23 | - job-template: |
| 24 | id: 'sadis-server-tests' |
| 25 | name: 'verify_{project}_tests' |
| 26 | |
| 27 | description: | |
| 28 | Created by {id} job-template from ci-management/jjb/verify/sadis-server.yaml |
| 29 | |
| 30 | triggers: |
| 31 | - cord-infra-gerrit-trigger-patchset: |
| 32 | gerrit-server-name: '{gerrit-server-name}' |
| 33 | project-regexp: '^{project}$' |
| 34 | branch-regexp: '{branch-regexp}' |
| 35 | dependency-jobs: '{dependency-jobs}' |
| 36 | file-include-regexp: '{all-files-regexp}' |
| 37 | |
| 38 | properties: |
| 39 | - cord-infra-properties: |
| 40 | build-days-to-keep: '{build-days-to-keep}' |
| 41 | artifact-num-to-keep: '{artifact-num-to-keep}' |
| 42 | |
| 43 | wrappers: |
| 44 | - lf-infra-wrappers: |
| 45 | build-timeout: 20 |
| 46 | jenkins-ssh-credential: '{jenkins-ssh-credential}' |
| 47 | |
| 48 | scm: |
| 49 | - cord-infra-gerrit-scm: |
| 50 | git-url: '$GIT_URL/$GERRIT_PROJECT' |
| 51 | refspec: '$GERRIT_REFSPEC' |
| 52 | branch: '$GERRIT_BRANCH' |
| 53 | submodule-recursive: 'false' |
| 54 | choosing-strategy: 'gerrit' |
| 55 | jenkins-ssh-credential: '{jenkins-ssh-credential}' |
| 56 | basedir: '{project}' |
| 57 | |
| 58 | node: 'ubuntu16.04-basebuild-1c-2g' |
| 59 | project-type: freestyle |
| 60 | concurrent: true |
| 61 | |
| 62 | builders: |
| 63 | - shell: | |
| 64 | #!/usr/bin/env bash |
| 65 | set -eux -o pipefail |
| 66 | |
| 67 | export GOPATH=~/go |
| 68 | export PATH=$PATH:/usr/lib/go-1.10/bin:/usr/local/go/bin:~/go/bin |
| 69 | |
| 70 | # move code the proper location |
| 71 | mkdir -p $GOPATH/src/gerrit.opencord.org |
| 72 | mv sadis-server $GOPATH/src/gerrit.opencord.org/sadis-server |
| 73 | |
| 74 | pushd $GOPATH/src/gerrit.opencord.org/sadis-server |
| 75 | |
Zack Williams | ba14755 | 2018-11-20 15:33:42 -0700 | [diff] [blame] | 76 | dep ensure -v -update |
| 77 | |
Zack Williams | a9af8f0 | 2018-11-20 14:27:48 -0700 | [diff] [blame] | 78 | go build -v |
| 79 | |
| 80 | go test -v ./... |
| 81 | |
| 82 | # generate Jenkins report |
| 83 | go test -v ./... 2>&1 | go-junit-report > $WORKSPACE/junit-report.xml |
| 84 | |
| 85 | # generate Jenkins coverage |
| 86 | go test -coverprofile=coverage.txt -covermode=count ./... |
| 87 | gocover-cobertura < coverage.txt > $WORKSPACE/coverage.xml |
| 88 | |
| 89 | popd |
| 90 | |
| 91 | |
| 92 | publishers: |
| 93 | - junit: |
| 94 | results: "junit-report.xml" |
| 95 | allow-empty-results: true |
| 96 | - cobertura: |
| 97 | report-file: "coverage.xml" |
| 98 | targets: |
| 99 | - files: |
| 100 | healthy: 80 |
| 101 | unhealthy: 0 |
| 102 | failing: 0 |
| 103 | - method: |
| 104 | healthy: 50 |
| 105 | unhealthy: 0 |
| 106 | failing: 0 |