Refactor!: Update JJB code to comply with 5.x
[ci-management.git] / jjb / aiml-fw-athp-tps-kubeflow-adapter / aiml-fw-athp-tps-kubeflow-adapter.yaml
index a1611e8..ca92c12 100644 (file)
     build-node: centos7-builder-1c-1g
     branch: master
     jobs:
-      - gerrit-info-yaml-verify
\ No newline at end of file
+      - gerrit-info-yaml-verify
+
+- _aiml_kfc_docker_common: &aiml_kfc_docker_common
+    # values apply to all training manager projects
+    name: aiml-fw-athp-tps-kubeflow-adapter-docker-common
+    # git repo
+    project: aiml-fw/athp/tps/kubeflow-adapter
+    # jenkins job name prefix
+    project-name: aiml-fw-athp-tps-kubeflow-adapter
+    # maven settings file has docker credentials
+    mvn-settings: aiml-fw-athp-tps-kubeflow-adapter-settings
+
+- project:
+    <<: *aiml_kfc_docker_common
+    name: aiml-fw-athp-tps-kubeflow-adapter-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:
+    <<: *aiml_kfc_docker_common
+    name: aiml-fw-athp-tps-kubeflow-adapter-docker
+    project-name: '{name}'
+    # image name
+    docker-name: 'o-ran-sc/{name}'
+    # Dockerfile is in a subdir
+    docker-root: '.'
+    # source of docker tag
+    # dockerfile is in subdir of docker root
+    docker-build-args: '--network=host'
+    container-tag-method: yaml-file
+    build-node: ubuntu1804-docker-4c-4g
+    jobs:
+      - "{project-name}-gerrit-docker-jobs"
+    stream:
+      - master:
+          branch: master
+
+- project:
+    <<: *aiml_kfc_docker_common
+    name: aiml-fw-athp-tps-kubeflow-adapter-tox-verify
+    # the install script assumes an ubuntu image
+    build-node: ubuntu1804-builder-2c-2g
+    python-version: python3
+    # skip docs on verify
+    tox-envs: code
+    tox-dir: '.'
+    # do not trigger on changes in docs, releases
+    gerrit_trigger_file_paths:
+      - compare-type: REG_EXP
+        pattern: 'kfadapter/.*'
+    stream:
+      # run verify on all branches
+      # the ANT pattern is **/{branch}, we are exploiting that.
+      - all:
+          branch: master
+    jobs:
+      - gerrit-tox-verify
+
+- project:
+    <<: *aiml_kfc_docker_common
+    name: aiml-fw-athp-tps-kubeflow-adapter-sonarqube
+    python-version: python3
+    tox-dir: '.'
+    # the install script assumes an ubuntu image
+    build-node: ubuntu1804-builder-2c-2g
+    # do not trigger on changes in docs, releases
+    gerrit_trigger_file_paths:
+      - compare-type: REG_EXP
+        pattern: 'kfadapter/.*'
+    sonar-project-file: ""
+    sonar-properties: |
+        sonar.login={sonarcloud_api_token}
+        sonar.projectKey={sonarcloud_project_organization}_{project-name}
+        sonar.projectName={project-name}
+        sonar.organization={sonarcloud_project_organization}
+        sonar.build.sourceEncoding=UTF-8
+        sonar.sources=kfadapter
+        sonar.python.coverage.reportPaths=coverage.xml
+    jobs:
+      - gerrit-tox-sonarqube