blob: 1aa1f9cd3c4a8a6897d36d1d56e7a7957bd9ff26 [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
Anil Belure1079c92021-06-29 09:44:16 +100059 java-version: openjdk11
Lott, Christopher (cl778h)6f1e4a52020-02-07 13:38:19 -050060 sonar-prescan-script: !include-raw-escape: prescan-e2mgr-ubuntu.sh
61 sonar-project-file: ""
62 # use sonarcloud values from defaults.yaml
63 sonar-properties: |
64 # Required metadata
65 sonar.login={sonarcloud_api_token}
66 sonar.projectKey={sonarcloud_project_organization}_{project-name}
67 sonar.projectName={project-name}
68 sonar.organization={sonarcloud_project_organization}
69 # Encoding
70 sonar.build.sourceEncoding=UTF-8
71 # Language
72 sonar.language=go
73 # Source
74 sonar.sources=E2Manager
75 # Unit tests
Lott, Christopher (cl778h)6962e052020-04-01 08:55:56 -040076 sonar.go.coverage.reportPaths=E2Manager/coverage.txt
Lott, Christopher (cl778h)6f1e4a52020-02-07 13:38:19 -050077 # Inclusions
78 sonar.inclusions=**/**.go
79 # Exclusions
80 sonar.exclusions=**/mocks/**.go,**/tests/**.go
ronitee5b9482020-04-26 16:29:48 +030081 # Test inclusions
82 sonar.test.inclusions=**/*_test.go
Lott, Christopher (cl778h)6f1e4a52020-02-07 13:38:19 -050083 jobs:
84 - gerrit-sonar-prescan-script