Refactor!: Update JJB code to comply with 5.x
[ci-management.git] / jjb / ric-app-hw / ric-app-hw.yaml
index d8a3e08..2545e6f 100644 (file)
@@ -5,10 +5,51 @@
     views:
       - project-view
 
-- project:
-    name: ric-app-hw-info
+- _hw_common: &hw_common
+    # values apply to all projects
+    name: hw-common
+    # git repo
     project: ric-app/hw
+    # jenkins prefix
     project-name: ric-app-hw
+    # maven settings file has docker credentials
+    mvn-settings: ric-app-hw-settings
+
+# verify INFO.yaml changes
+- project:
+    <<: *hw_common
+    name: ric-app-hw-info
     build-node: centos7-builder-1c-1g
     jobs:
       - gerrit-info-yaml-verify
+
+# create docker image when source changes
+- project:
+    <<: *hw_common
+    # also used as image name
+    name: ric-app-hw
+    # image name
+    docker-name: 'o-ran-sc/{name}'
+    # source type of image tag
+    container-tag-method: yaml-file
+    # use host network
+    docker-build-args: '--network=host'
+    # trigger on any change other than a file in ./docs
+    gerrit_trigger_file_paths:
+        - compare-type: REG_EXP
+          pattern: '^((?!docs/|\/COMMIT_MSG).)*$'
+    jobs:
+        - '{project-name}-gerrit-docker-jobs'
+    stream:
+        - master:
+            branch: master
+
+# push nexus image from staging to release
+- project:
+    <<: *hw_common
+    name: ric-app-hw-release
+    # maven release requires sigul which requires centos
+    # container release requires docker
+    build-node: centos7-docker-2c-8g
+    jobs:
+      - '{project-name}-gerrit-release-jobs'