Refactor!: Update JJB code to comply with 5.x
[ci-management.git] / jjb / ric-plt-appmgr / ric-plt-appmgr.yaml
index e680f53..478ba8b 100644 (file)
@@ -5,35 +5,73 @@
     views:
       - project-view
 
-- appmgr_docker_common: &appmgr_docker_common
-    # values apply to all RIC docker-build projects.
-    # factored out in case appmgr needs multiple projects.
-    # use a specific name to prevent reuse attempts
-    # bcos anchors don't cross document boundaries.
-    name: appmgr-docker-common
-    build-node: ubuntu1804-docker-4c-4g
-    # pull from the public mirror + releases registry
-    container-public-registry: nexus3.o-ran-sc.org:10001
-    # push to the staging repo bcos all builds are RCs
-    container-push-registry:  nexus3.o-ran-sc.org:10004
-    # use host network to clone from our gerrit
-    docker-build-args: '--network=host'
-    # source of docker tag
-    docker-use-params-from: yaml-file-params
-    stream:
-      - master:
-          branch: master
-
 - project:
-    name: ric-plt-appmgr
+    name: ric-plt-appmgr-info
+    project: ric-plt/appmgr
+    project-name: ric-plt-appmgr
+    build-node: centos7-builder-1c-1g
+    jobs:
+      - gerrit-info-yaml-verify
+
+- _appmgr_docker_common: &appmgr_docker_common
+    # values apply to all appmgr docker projects
+    name: appmgr-docker-common
     # git repo
     project: ric-plt/appmgr
     # jenkins job name prefix
-    project-name: '{name}'
-    # image name
-    docker-name: '{name}'
+    project-name: ric-plt-appmgr
     # maven settings file has docker credentials
     mvn-settings: ric-plt-appmgr-settings
+
+- project:
+    <<: *appmgr_docker_common
+    name: ric-plt-appmgr
+    # image name
+    docker-name: 'o-ran-sc/{name}'
+    # source of docker tag
+    container-tag-method: yaml-file
+    # use host network to clone from our gerrit
+    docker-build-args: '--network=host'
     jobs:
       - '{project-name}-gerrit-docker-jobs'
+    stream:
+      - master:
+          branch: master
+- project:
+    <<: *appmgr_docker_common
+    name: ric-plt-appmgr-go-sonarqube
+    # docker-enabled nodes have golang
+    # build script needs ubuntu
+    build-node: ubuntu1804-docker-4c-4g
+    sonar-prescan-script: !include-raw-escape: prescan-ric-plt-appmgr-ubuntu.sh
+    sonar-project-file: ""
+    # use sonarcloud values from defaults.yaml
+    sonar-properties: |
+        # Required metadata
+        sonar.login={sonarcloud_api_token}
+        sonar.projectKey={sonarcloud_project_organization}_{project-name}
+        sonar.projectName={project-name}
+        sonar.organization={sonarcloud_project_organization}
+        # Encoding
+        sonar.build.sourceEncoding=UTF-8
+        # Language
+        sonar.language=go
+        # Source
+        sonar.sources=.
+        # Unit tests
+        sonar.go.coverage.reportPaths=**/cover.out
+        # Inclusions
+        sonar.inclusions=**/*.go
+        # Exclusions
+        sonar.exclusions=**/*_test.go
+    jobs:
+      - gerrit-sonar-prescan-script
+
+- project:
     <<: *appmgr_docker_common
+    name: ric-plt-appmgr-release
+    # maven release requires sigul which requires centos
+    # container release requires docker
+    build-node: centos7-docker-2c-8g
+    jobs:
+      - '{project-name}-gerrit-release-jobs'