X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=jjb%2Fci-management%2Fci-docker.yaml;h=7aa82c99dbfe0558a97aa71066505c0f62384d44;hb=b0cf01badcd2717524aa17d1011a19b40036c503;hp=7fead4b0c9c435f0351dca54058776cca11387bd;hpb=d93be640e05d788d6b00593d7101910801d0bddd;p=ci-management.git diff --git a/jjb/ci-management/ci-docker.yaml b/jjb/ci-management/ci-docker.yaml index 7fead4b0..7aa82c99 100644 --- a/jjb/ci-management/ci-docker.yaml +++ b/jjb/ci-management/ci-docker.yaml @@ -1,31 +1,43 @@ --- -- ci_docker_common: &ci_docker_common - # Defines common ci-docker configuration +# Job configurations for base docker build images + +# This macro factors out common configuration +- _ci_docker_common: &ci_docker_common name: ci-docker-common # git repo project: ci-management - build-node: ubuntu1804-docker-4c-4g - container-public-registry: nexus3.o-ran-sc.org:10001 - # use the staging repo bcos all builds are RCs - container-push-registry: nexus3.o-ran-sc.org:10004 + # maven settings file has docker credentials + mvn-settings: ci-management-settings + # build every Saturday + cron: 'H H * * 6' # use host network to clone from our gerrit docker-build-args: '--network=host' - # default to YAML + # get tag from YAML container-tag-method: yaml-file - # maven settings file has docker credentials - mvn-settings: ci-management-settings - stream: - - master: - branch: master - -- project: - <<: *ci_docker_common - name: bldr-ric-debian-python + # name key is overridden by project template + # Jenkins job prefix project-name: '{project}-{name}' + # Docker image name docker-name: '{name}' + # Directory with Dockerfile docker-root: 'docker/{name}' + # Limit build trigger to appropriate files gerrit_trigger_file_paths: - compare-type: REG_EXP pattern: 'docker/{name}/.*' + # Includes verify and merge jobs jobs: - '{project-name}-gerrit-docker-jobs' + # Only build master branch + stream: + - master: + branch: master + +# Each project name is a subdirectory in ci-management/docker +# with a Dockerfile and a container-tag.yaml file + +# This image is deprecated, projects should move to Ubuntu 18 +# TODO remove entirely +- project: + name: bldr-ubuntu16-c-go + <<: *ci_docker_common