Refactor: JJB code
[ci-management.git] / jjb / ric-plt-xapp-frame / ric-plt-xapp-frame.yaml
index 834d596..1179b79 100644 (file)
@@ -13,8 +13,8 @@
     jobs:
       - gerrit-info-yaml-verify
 
-- xapp_frame_docker_common: &xapp_frame_docker_common
-    # values apply to all xapp-frame docker projects
+- _xapp_frame_docker_common:
+    &xapp_frame_docker_common # values apply to all xapp-frame docker projects
     name: xapp-frame-docker-common
     # git repo
     project: ric-plt/xapp-frame
@@ -28,9 +28,9 @@
     <<: *xapp_frame_docker_common
     name: ric-plt-xapp-frame
     # image name, altho it is never pushed
-    docker-name: '{name}'
+    docker-name: "{name}"
     # use host network
-    docker-build-args: '--network=host -f ci/Dockerfile'
+    docker-build-args: "--network=host -f ci/Dockerfile"
     # image tag; use a fixed value
     container-tag-method: latest
     jobs:
     stream:
       - master:
           branch: master
+- project:
+    <<: *xapp_frame_docker_common
+    name: ric-plt-xapp-frame-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-xapp-frame-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:
+    <<: *xapp_frame_docker_common
+    name: ric-plt-xapp-frame-release
+    # maven release requires sigul which requires centos
+    # container release requires docker
+    build-node: centos7-docker-2c-8g
+    jobs:
+      - "{project-name}-gerrit-release-jobs"