blob: 1288b5948d27a3bb59473a2f636e9d2983214c51 [file] [log] [blame]
Lott, Christopher (cl778h)72b4e6a2019-06-17 15:24:31 -04001---
2- project:
3 name: ric-plt-e2mgr-project-view
4 project-name: ric-plt-e2mgr
5 views:
6 - project-view
7
Lott, Christopher (cl778h)72b4e6a2019-06-17 15:24:31 -04008- project:
9 name: ric-plt-e2mgr-info
10 project: ric-plt/e2mgr
11 project-name: ric-plt-e2mgr
12 build-node: centos7-builder-1c-1g
Lott, Christopher (cl778h)72b4e6a2019-06-17 15:24:31 -040013 jobs:
14 - gerrit-info-yaml-verify
Lott, Christopher (cl778h)3f5f89b2019-08-05 10:25:58 -040015
16- e2mgr_docker_common: &e2mgr_docker_common
17 # values apply to all E2MGR docker projects
18 name: e2mgr-docker-common
19 # git repo
20 project: ric-plt/e2mgr
21 # jenkins job name prefix
22 project-name: ric-plt-e2mgr
23 # maven settings file has docker credentials
24 mvn-settings: ric-plt-e2mgr-settings
25
26- project:
27 <<: *e2mgr_docker_common
28 name: ric-plt-e2mgr
29 # image name
wrider5bf12752019-11-19 01:00:23 -050030 docker-name: 'o-ran-sc/{name}'
Lott, Christopher (cl778h)3f5f89b2019-08-05 10:25:58 -040031 # Dockerfile is in a subdir
32 docker-root: E2Manager
33 # source of docker tag
34 container-tag-method: yaml-file
35 # use host network to clone from our gerrit
36 docker-build-args: '--network=host'
37 jobs:
38 - '{project-name}-gerrit-docker-jobs'
39 stream:
40 - master:
41 branch: master
wrider5bf12752019-11-19 01:00:23 -050042
43- project:
44 <<: *e2mgr_docker_common
45 name: ric-plt-e2mgr-release
wrider5bf12752019-11-19 01:00:23 -050046 # maven release requires sigul which requires centos
47 # container release requires docker
48 build-node: centos7-docker-2c-8g
49 jobs:
50 - '{project-name}-gerrit-release-jobs'
Lott, Christopher (cl778h)6f1e4a52020-02-07 13:38:19 -050051
52- project:
53 name: ric-plt-e2mgr-sonar
54 project: ric-plt/e2mgr
55 project-name: ric-plt-e2mgr
56 # prescan script requires ubuntu
57 # golang is only on docker-enabled nodes
58 build-node: ubuntu1804-docker-4c-4g
59 sonar-prescan-script: !include-raw-escape: prescan-e2mgr-ubuntu.sh
60 sonar-project-file: ""
61 # use sonarcloud values from defaults.yaml
62 sonar-properties: |
63 # Required metadata
64 sonar.login={sonarcloud_api_token}
65 sonar.projectKey={sonarcloud_project_organization}_{project-name}
66 sonar.projectName={project-name}
67 sonar.organization={sonarcloud_project_organization}
68 # Encoding
69 sonar.build.sourceEncoding=UTF-8
70 # Language
71 sonar.language=go
72 # Source
73 sonar.sources=E2Manager
74 # Unit tests
Lott, Christopher (cl778h)6962e052020-04-01 08:55:56 -040075 sonar.go.coverage.reportPaths=E2Manager/coverage.txt
Lott, Christopher (cl778h)6f1e4a52020-02-07 13:38:19 -050076 # Inclusions
77 sonar.inclusions=**/**.go
78 # Exclusions
79 sonar.exclusions=**/mocks/**.go,**/tests/**.go
ronitee5b9482020-04-26 16:29:48 +030080 # Test inclusions
81 sonar.test.inclusions=**/*_test.go
Lott, Christopher (cl778h)6f1e4a52020-02-07 13:38:19 -050082 jobs:
83 - gerrit-sonar-prescan-script