NONRTRIC - Sonar support 61/7961/4
authorPatrikBuhr <patrik.buhr@est.tech>
Fri, 18 Mar 2022 08:16:12 +0000 (09:16 +0100)
committerPatrikBuhr <patrik.buhr@est.tech>
Tue, 22 Mar 2022 08:01:46 +0000 (09:01 +0100)
Change-Id: I41afa17af87ad739a5b22131073198ecda6c420e
Signed-off-by: PatrikBuhr <patrik.buhr@est.tech>
Issue-ID: NONRTRIC-737

jjb/nonrtric/nonrtric.yaml
jjb/nonrtric/prescan-nonrtric-auth-token-fetch-ubuntu.sh [new file with mode: 0644]
jjb/nonrtric/sonar-project.properties

index 55c2ab6..cf574ff 100644 (file)
       - dawn:
           branch: dawn
 
+- project:
+    <<: *nonrtric_jdk_common
+    name: nonrtric-auth-token-fetch
+    project-name: '{name}'
+    # image name
+    docker-name: 'o-ran-sc/nonrtric-auth-token-fetch'
+    # 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: 'auth-token-fetch'
+    # use host network to clone from our gerrit
+    docker-build-args: '--network=host'
+    # Directory where go test should be run
+    go-root: 'auth-token-fetch'
+    # Limit build trigger to appropriate files
+    gerrit_trigger_file_paths:
+      - compare-type: REG_EXP
+        pattern: 'auth-token-fetch/.*'
+    build-node: ubuntu1804-docker-4c-4g
+    # Includes verify and merge jobs
+    jobs:
+      - "{project-name}-gerrit-docker-jobs"
+      - gerrit-go-verify
+    stream:
+      - master:
+          branch: master
+
+- project:
+    <<: *nonrtric_jdk_common
+    name: nonrtric-auth-token-fetch-sonar
+    project-name: nonrtric-auth-token-fetch
+    # prescan script requires ubuntu
+    # golang is only on docker-enabled nodes
+    build-node: ubuntu1804-docker-4c-4g
+    sonar-prescan-script: !include-raw-escape: prescan-nonrtric-auth-token-fetch-ubuntu.sh
+    sonar-project-file: ""
+    java-version: openjdk11
+    # use sonarcloud values from defaults.yaml
+    sonar-properties: !include-raw: sonar-project.properties
+    jobs:
+      - gerrit-sonar-prescan-script
+
 - project:
     <<: *nonrtric_jdk_common
     name: nonrtric-release
diff --git a/jjb/nonrtric/prescan-nonrtric-auth-token-fetch-ubuntu.sh b/jjb/nonrtric/prescan-nonrtric-auth-token-fetch-ubuntu.sh
new file mode 100644 (file)
index 0000000..b5f282b
--- /dev/null
@@ -0,0 +1,30 @@
+#!/bin/sh
+##############################################################################
+#
+#   Copyright (C) 2021: Nordix Foundation
+#
+#   Licensed under the Apache License, Version 2.0 (the "License");
+#   you may not use this file except in compliance with the License.
+#   You may obtain a copy of the License at
+#
+#       http://www.apache.org/licenses/LICENSE-2.0
+#
+#   Unless required by applicable law or agreed to in writing, software
+#   distributed under the License is distributed on an "AS IS" BASIS,
+#   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+#   See the License for the specific language governing permissions and
+#   limitations under the License.
+#
+##############################################################################
+
+echo "--> $0"
+
+set -ex
+
+# Assumes ubuntu - uses apt-get
+sudo apt-get update
+
+# build script execution
+bash auth-token-fetch/run-tests-ubuntu.sh
+
+echo "--> $0 ends"
index 4b499ff..36f8b51 100644 (file)
@@ -9,8 +9,8 @@ sonar.language=go
 # Source
 sonar.sources=.
 # Unit tests
-sonar.go.coverage.reportPaths=dmaap-mediator-producer/coverage.txt
+sonar.go.coverage.reportPaths=auth-token-fetch/coverage.txt
 # Inclusions
-sonar.inclusions=dmaap-mediator-producer/internal/**/**.go
+sonar.inclusions=auth-token-fetch/**.go
 # Exclusions
-sonar.exclusions=dmaap-mediator-producer/main.go,dmaap-mediator-producer/mocks/**.go,dmaap-mediator-producer/stub/**.go,dmaap-mediator-producer/internal/**/**_test.go
+sonar.exclusions=auth-token-fetch/**_test.go