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