blob: 0ecd412bcf3990aa218b05d18c8efc2d1ad7b6d1 [file] [log] [blame]
Zack Williams3475f192018-10-05 10:37:50 -07001---
2# verification jobs for 'voltha-bbsim' repo
3
4- project:
5 name: voltha-bbsim
6 project: '{name}'
7
8 jobs:
9 - 'verify-voltha-bbsim-jobs':
10 branch-regexp: '{supported-branches-regexp}'
11
12- job-group:
13 name: 'verify-voltha-bbsim-jobs'
14 jobs:
15 - 'verify-licensed'
16 - 'verify-sonarqube':
17 dependency-jobs: 'verify_voltha-bbsim_licensed'
18 - 'voltha-bbsim-tests':
19 dependency-jobs: 'verify_voltha-bbsim_sonarqube'
20
21- job-template:
22 id: 'voltha-bbsim-tests'
23 name: 'verify_{project}_tests'
24
25 description: |
26 Created by {id} job-template from ci-management/jjb/verify/voltha-bbsim.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: '$GERRIT_REFSPEC'
50 branch: '$GERRIT_BRANCH'
51 submodule-recursive: 'false'
52 choosing-strategy: 'gerrit'
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 - shell: |
62 #!/usr/bin/env bash
63 set -eux -o pipefail
64
65 export GOPATH=~/go
66 export PATH=$PATH:/usr/lib/go-1.10/bin:/usr/local/go/bin:~/go/bin
67
68 # move code the proper location
69 mkdir -p $GOPATH/src/gerrit.opencord.org
70 mv voltha-bbsim $GOPATH/src/gerrit.opencord.org/voltha-bbsim
71
72 # get prereqs
73 go get -v github.com/grpc-ecosystem/grpc-gateway/protoc-gen-grpc-gateway
74 go get -v github.com/golang/protobuf/protoc-gen-go
75
76 pushd $GOPATH/src/gerrit.opencord.org/voltha-bbsim
77
Zack Williams4555c1d2018-10-08 13:12:35 -070078 make dep
79
Zack Williams3475f192018-10-05 10:37:50 -070080 go test -v ./... 2>&1 | go-junit-report > $WORKSPACE/junit-report.xml
81
82 go test -coverprofile=coverage.txt -covermode=count ./...
83 gocover-cobertura < coverage.txt > $WORKSPACE/coverage.xml
84
85 popd
86
87
88 publishers:
89 - junit:
90 results: "junit-report.xml"
Zack Williams4555c1d2018-10-08 13:12:35 -070091 allow-empty-results: true
Zack Williams3475f192018-10-05 10:37:50 -070092 - 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