Adapt nonrtric-plt-sme to capifcore in folder 35/9335/3
authorelinuxhenrik <henrik.b.andersson@est.tech>
Thu, 20 Oct 2022 11:06:19 +0000 (13:06 +0200)
committerelinuxhenrik <henrik.b.andersson@est.tech>
Fri, 21 Oct 2022 06:45:40 +0000 (08:45 +0200)
Issue-ID: NONRTRIC-812
Signed-off-by: elinuxhenrik <henrik.b.andersson@est.tech>
Change-Id: I3065f1e817cfa036f530c74c72ec324321a34c63

jjb/nonrtric-plt-sme/nonrtric-plt-sme.yaml
jjb/nonrtric-plt-sme/prescan-capifcore-ubuntu.sh [moved from jjb/nonrtric-plt-sme/prescan-sme-ubuntu.sh with 95% similarity]
jjb/nonrtric-plt-sme/sonar-project.properties

index d4164df..4b29453 100644 (file)
@@ -5,47 +5,35 @@
     views:
       - project-view
 
-- project:
+- project: &sme_common
     name: nonrtric-plt-sme-info
     project: nonrtric/plt/sme
     project-name: nonrtric-plt-sme
+    # maven settings file has docker credentials
+    mvn-settings: nonrtric-plt-sme-settings
     build-node: centos7-builder-1c-1g
     branch: master
     jobs:
       - gerrit-info-yaml-verify
-      
-- sme_common: &sme_common
-    name: sme-common
-    # git repo
-    project: nonrtric/plt/sme
-    # jenkins job name prefix
-    project-name: nonrtric-plt-sme
-    # maven settings file has docker credentials
-    mvn-settings: nonrtric-plt-sme-settings
-
-- project:
-    <<: *sme_common
-    name: nonrtric-plt-sme-release
-    # maven release requires sigul which requires centos
-    # container release requires docker
-    build-node: centos7-docker-2c-8g
-    jobs:
-      - '{project-name}-gerrit-release-jobs'
 
 - project:
     <<: *sme_common
-    name: nonrtric-plt-sme
+    name: nonrtric-plt-capifcore
     project-name: '{name}'
     # image name
-    docker-name: 'o-ran-sc/nonrtric-plt-sme'
+    docker-name: 'o-ran-sc/nonrtric-plt-capifcore'
     # get tag from YAML
     container-tag-method: yaml-file
     # use host network to clone from our gerrit
     docker-build-args: '--network=host'
     # Directory with Dockerfile
-    docker-root: '.'
+    docker-root: 'capifcore'
+    # Limit build trigger to appropriate files
+    gerrit_trigger_file_paths:
+      - compare-type: REG_EXP
+        pattern: 'capifcore/.*'
     # Directory where go test should be run
-    go-root: '.'
+    go-root: 'capifcore'
     build-node: ubuntu1804-docker-4c-4g
     # Includes verify and merge jobs
     jobs:
 
 - project:
     <<: *sme_common
-    name: nonrtric-plt-sme-sonar
-    project-name: nonrtric-plt-sme
+    name: nonrtric-plt-capifcore-sonar
+    project-name: nonrtric-plt-capifcore
     # prescan script requires ubuntu
     # golang is only on docker-enabled nodes
     build-node: ubuntu1804-docker-4c-4g
-    sonar-prescan-script: !include-raw-escape: prescan-sme-ubuntu.sh
+    gerrit_trigger_file_paths:
+      - compare-type: REG_EXP
+        pattern: 'capifcore/.*'
+    sonar-prescan-script: !include-raw-escape: prescan-capifcore-ubuntu.sh
     sonar-project-file: ""
     java-version: openjdk11
     # use sonarcloud values from defaults.yaml
@@ -25,6 +25,6 @@ set -ex
 sudo apt-get update
 
 # build script execution
-bash ./build-sme-ubuntu.sh
+bash capifcore/build-capifcore-ubuntu.sh
 
 echo "--> prescan-sme-ubuntu.sh ends"
index bb3a453..7972aa1 100644 (file)
@@ -9,8 +9,8 @@ sonar.language=go
 # Source
 sonar.sources=.
 # Unit tests
-sonar.go.coverage.reportPaths=coverage.txt
+sonar.go.coverage.reportPaths=capifcore/coverage.txt
 # Inclusions
-sonar.inclusions=main.go,internal/**/**.go
+sonar.inclusions=capifcore/main.go,capifcore/internal/**/**.go
 # Exclusions
-sonar.exclusions=main_test.go,internal/,internal/**/*_test.go,internal/**/*.gen.go,internal/**/mocks/**
+sonar.exclusions=capifcore/main_test.go,capifcore/internal/,capifcore/internal/**/*_test.go,capifcore/internal/**/*.gen.go,capifcore/internal/**/mocks/**