blob: 6240946a52a00cf566228aa6a6244233a0919a07 [file] [log] [blame]
Zack Williams28f43012018-08-08 11:19:11 -07001---
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 Williams15a31c82018-08-29 15:10:03 -070018 - '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'
49 refspec: ''
50 branch: '$GERRIT_BRANCH'
51 submodule-recursive: 'false'
52 choosing-strategy: default
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:
61 - cord-infra-gerrit-repo-patch:
62 destination-dir: 'cord'
63 project: '$GERRIT_PROJECT'
64 change-number: '$GERRIT_CHANGE_NUMBER'
65 patchset-number: '$GERRIT_PATCHSET_NUMBER'
66 - shell: |
67 #!/usr/bin/env bash
68 set -eux -o pipefail
69
70 export GOPATH=~/go
71 export PATH=$PATH:/usr/lib/go-1.10/bin:~/go/bin
72
73 # move code the proper location
74 mkdir -p $GOPATH/src/gerrit.opencord.org
75 mv abstract-olt $GOPATH/src/gerrit.opencord.org/abstract-olt
76
77 # get prereqs
78 go get -v github.com/grpc-ecosystem/grpc-gateway/protoc-gen-grpc-gateway
79 go get -v github.com/grpc-ecosystem/grpc-gateway/protoc-gen-swagger
80 go get -v github.com/golang/protobuf/protoc-gen-go
81
82 pushd $GOPATH/src/gerrit.opencord.org/abstract-olt
83
84 make test
85
86 go test -v ./... 2>&1 | go-junit-report > $WORKSPACE/junit-report.xml
87
88 go test -coverprofile=coverage.txt -covermode=count ./...
89 gocover-cobertura < coverage.txt > $WORKSPACE/coverage.xml
90
91 popd
92
93
94 publishers:
95 - junit:
96 results: "junit-report.xml"
97 - cobertura:
98 report-file: "coverage.xml"
99 targets:
100 - files:
101 healthy: 80
102 unhealthy: 0
103 failing: 0
104 - method:
105 healthy: 50
106 unhealthy: 0
107 failing: 0