blob: 7640c806a33dec603574110a28fca1258d3e0769 [file] [log] [blame]
Linux Foundation Administrators14b8edb2018-01-25 13:00:42 -08001---
Zack Williams7468c362018-04-06 09:52:30 -07002# CORD GLOBAL jenkins job builder (JJB) defaults
Linux Foundation Administrators14b8edb2018-01-25 13:00:42 -08003
4- defaults:
5 name: global
6
7 # lftools
Zack Williams26846522019-10-04 11:49:27 -07008 lftools-version: '~=0.26.2'
Linux Foundation Administrators14b8edb2018-01-25 13:00:42 -08009
Zack Williamsccc14742020-01-22 13:15:59 -070010 # LF templates require these to be set in later versions of global-jjb
11 submodule-disable: 'false'
12 submodule-timeout: 10
13
Zack Williams8e69efd2018-06-13 15:05:18 -070014 # name of the SSH key to use in most cases
Linux Foundation Administrators14b8edb2018-01-25 13:00:42 -080015 jenkins-ssh-credential: 'cord-jenkins-ssh'
Zack Williams8e69efd2018-06-13 15:05:18 -070016 gerrit-ssh-credential: 'gerrit-jenkins-user'
Linux Foundation Administrators14b8edb2018-01-25 13:00:42 -080017
Zack Williams7468c362018-04-06 09:52:30 -070018 # by default, don't depend on other jobs
19 dependency-jobs: ''
Linux Foundation Administrators14b8edb2018-01-25 13:00:42 -080020
Zack Williams15a31c82018-08-29 15:10:03 -070021 # SCM checkout locations within Jenkins Workspace
22 destination-dir: ''
23 basedir: ''
24
Zack Williamsb3292082019-10-11 17:15:18 -070025 # used to rename jobs as is required, if running same job more than once
26 # for a project
Zack Williams9d68aa32018-07-12 11:50:37 -070027 name-extension: ''
28
Zack Williams7468c362018-04-06 09:52:30 -070029 # How long to keep builds and artifacts
30 build-days-to-keep: 60
31 artifact-num-to-keep: 30
Zack Williamsac984412018-04-04 15:39:45 -070032
Zack Williams7468c362018-04-06 09:52:30 -070033 # list of artifacts to archive
Linux Foundation Administrators14b8edb2018-01-25 13:00:42 -080034 archive-artifacts: ''
35
Zack Williams7468c362018-04-06 09:52:30 -070036 # build timeout (minutes)
Zack Williams8e518af2019-10-23 08:45:09 -070037 build-timeout: 20
Linux Foundation Administrators14b8edb2018-01-25 13:00:42 -080038
Zack Williams641d1492018-08-17 13:31:53 -070039 # timed trigger defaults, crontab syntax
40 # H = random value hashed by name of job
41 every-hour: "H * * * *"
42 every-four-hours: "H */4 * * *"
43 every-six-hours: "H */6 * * *"
44 every-eight-hours: "H */8 * * *"
45 twice-a-day: "H */12 * * *"
46 once-a-day: "H 0 * * *"
47
Zack Williamsb3292082019-10-11 17:15:18 -070048 # The most frequently used type of Build Executor. Name is per the LF global-jjb.
49 # See build node types under "Cloud > Amazon EC2" at
Zack Williamsf4c9c402018-06-27 14:58:43 -070050 # https://jenkins.opencord.org/configure
Zack Williams7468c362018-04-06 09:52:30 -070051 build-node: ubuntu16.04-basebuild-1c-1g
Linux Foundation Administrators14b8edb2018-01-25 13:00:42 -080052
Zack Williams7468c362018-04-06 09:52:30 -070053 # CORD Gerrit server definition, set in configuration
54 gerrit-server-name: 'CORD Gerrit'
55
56 # URL for Gerrit server, for use with `repo`
Zack Williamsc27ca2d2018-04-11 13:16:45 -070057 gerrit-server-url: 'https://gerrit.opencord.org'
Zack Williams7468c362018-04-06 09:52:30 -070058
59 # name of the manifest git repos used with the `repo` cli tool
60 cord-repo-manifest: manifest.git
61 cordqa-manifest-repo: qa-manifest.git
Kailashaad71012019-08-27 10:36:53 -070062 go-manifest-repo: go-manifest.git
63 voltha-test-manifest-repo: voltha-test-manifest.git
Zack Williams7468c362018-04-06 09:52:30 -070064
Zack Williams5e09c952018-06-12 10:19:48 -070065 # default email address to send job failure messages
66 failure-email-address: 'cord-dev@opencord.org'
67
Luca Preteae7fc492018-12-13 16:00:37 -080068 # Projects containing helm-charts
Jeremy Ronquillo1860ef52020-06-24 09:55:32 -070069 helm-charts-projects-regexp: '^(?!aether)(.*helm-charts|cord-platform|seba)$'
Luca Preteae7fc492018-12-13 16:00:37 -080070
Zack Williamsc27ca2d2018-04-11 13:16:45 -070071 # regexp for gerrit triggers
72 # list of supported branches, for branch-regexp
Kailash40e1d0f2019-03-01 13:26:49 -080073 all-branches-regexp: '.*'
Andy Bavier84971ef2020-07-01 15:37:29 -070074 supported-branches-regexp: '^(master|cord-7.0|cord-6.1|seba-1.0|voltha-2.3|voltha-2.4)$'
Kailash Khalasica590552018-05-24 15:09:42 -070075 legacy-branches-regexp: '^(cord-5.0|cord-4.1|cord-4.0)$'
Andy Bavier84971ef2020-07-01 15:37:29 -070076 modern-branches-regexp: '^(master|cord-7.0|cord-6.1|cord-6.0|seba-1.0|voltha-2.3|voltha-2.4)$'
Zack Williams48dd14a2019-07-12 14:40:53 -070077 platform-branches-regexp: '^(master|cord-7.0|cord-6.1)$'
78 seba-branches-regexp: '^(master|cord-7.0|seba-1.0)$'
Zack Williamsac984412018-04-04 15:39:45 -070079
Zack Williams3bf60d52019-06-07 12:56:10 -070080 # matchs all project repos
81 all-projects-regexp: '.*'
82
Zack Williams5fee0022018-06-11 14:42:54 -070083 # for matching repos that build docker images with imagebuilder
Zack Williams599f6b72019-04-16 17:05:34 -070084 # As of 2019-04-16 most of the services actively being developed use the
85 # make-based image generation process managed by the `docker-publish` job
86 imagebuilder-projects-regexp: '^(cord-tester|mcord|ecord|acordion|addressmanager|epc-service|exampleservice|globalxos|hippie-oss|hss_db|hypercache|internetemulator|monitoring|openstack|progran|sdn-controller|templateservice|vEE|vEG|vBBU|venb|vHSS|vMME|vnaas|vPGWC|vPGWU|vsg|vsg-hw|vSGW|vSM|vspgwc|vspgwu|vtn-service|vtr)$'
Zack Williams5fee0022018-06-11 14:42:54 -070087
Zack Williams66500002018-09-06 15:29:05 -070088 # strictness of version checks
89 semver-strict: 0
90
Zack Williams07949bb2018-07-20 07:29:15 -070091 # matching repos that should be version tagged by the version-tag job
92 # (basically the same as imagebuilder projects + helm charts + tools
Zack Williams3069e2c2020-06-01 21:03:24 -070093 version-tag-projects-regexp: '^(xos.*|.*helm-charts|automation-tools|cord-tester|chameleon|rcord|mcord|ecord|acordion|addressmanager|epc-service|exampleservice|fabric.*|globalxos|hippie-oss|hss_db|hypercache|internetemulator|kubernetes-service|monitoring|olt-service|onos-service|openstack|progran|sdn-controller|simpleexampleservice|templateservice|vEE|vEG|vBBU|venb|vHSS|vMME|vnaas|vPGWC|vPGWU|vrouter|vsg|vsg-hw|vSGW|vSM|vspgwc|vspgwu|vtn-service|vtr|.*-workflow-driver|ves-agent|voltha-bbsim|openolt|sadis-server|kafka-topic-exporter|pyvoltha||plyxproto|voltha-protos|alpine-grpc-base|cordctl|voltha-go|voltha-onos|device-management|cord-workflow.*|voltha-system-tests|openairinterface|omec-.*|bbsim|omci-sim|ponsim|pppoel2relay|voltha-api-server|aaa|config|dhcpl2relay|igmp|igmpproxy|kafka-onos|mcast|olt|sadis|vtn|voltha-.*-adapter.*|voltha-lib-go|voltha-python-base|voltha-docker-tools|mn-stratum-siab|ofagent.*|bng|voltctl|openolt-scale-tester|nem-ondemand-proxy|multifabric|openolt-test|omci-lib-go|kind-voltha|voltha-docs|mac-learning|goloxi|device-management-interface)$'
Zack Williams07949bb2018-07-20 07:29:15 -070094
Zack Williamsab85b982020-01-08 11:49:37 -070095 # List of all repos that contribute to the CORD guide
96 cord-guide-projects-regexp: '^(att-workflow-driver|cord-tester|cordctl|exampleservice|fabric|fabric-crossconnect|hippie-oss|kubernetes-service|olt-service|onos-service|openolt|openstack|rcord|simpleexampleservice|vrouter|vtn-service|xos|xos-gui|xos-tosca)$'
97
Zack Williams5d8f2532019-02-14 12:20:51 -070098 # PyPI related publishing variables
99 #
Zack Williams5aa37e12019-02-13 13:28:29 -0700100 # Pipe-separated list of directories relative to $WORKSPACE containing
Zack Williams5d8f2532019-02-14 12:20:51 -0700101 # python modules to publish to PyPI. Default is current directory which is
102 # correct for simple modules
Zack Williams5aa37e12019-02-13 13:28:29 -0700103 pypi-module-dirs: '.'
104
105 # Which PyPI index to use. Corresponds to values in ~/.pypirc
Zack Williams5d8f2532019-02-14 12:20:51 -0700106 # 'pypi' and 'testpypi' are current options. Default to testpypi, override
107 # in the job once testing is completed
Zack Williams5aa37e12019-02-13 13:28:29 -0700108 pypi-index: 'testpypi'
109
Zack Williams96fecf02019-03-27 13:52:01 -0700110 # Commands to run within the root of the checked out repo before running
111 # the `python setup.py sdist` to generate the distribution.
112 # Primarily used for autogenerating code before publishing a repo
113 pypi-prep-commands: ''
114
Zack Williamse16a9bd2019-03-21 23:02:24 -0700115 # Name of the Docker repository (usually on DockerHub) that is the
116 # destination for images to be pushed to after building.
117 # Default is invalid - must be specified on every job.
118 docker-repo: 'default-and-invalid'
119
Zack Williams38126df2019-03-21 23:02:24 -0700120 # URL of the Docker registry (server running a docker registry) that is the
121 # destination for images to be pushed to after building. If set, must
122 # include trailing slash as a separator before the repo name.
123 # Default is blank, which maps to DockerHub.
124 docker-registry: ''
125
Zack Williamsc27ca2d2018-04-11 13:16:45 -0700126 # for matching files with file-include-regexp
127 all-files-regexp: '.*'
Kailash Khalasica590552018-05-24 15:09:42 -0700128 doc-files-regexp: '^docs/.*'
Zack Williams698e5d12018-12-18 16:52:39 -0700129
130 # regex to allow docs-only patchsets w/version bumps to skip code-level
131 # tests. Have to also ignore the commit message on negative match,
132 # per: https://issues.jenkins-ci.org/browse/JENKINS-19891
133 code-files-regexp: '^(?!docs|VERSION|\/COMMIT_MSG).*$'
Kailash672d2c72019-02-14 09:31:24 -0800134 api-test-files-regexp: '^(?!docs|VERSION|\/COMMIT_MSG|Jenkinsfile-*).*$'
Zack Williams698e5d12018-12-18 16:52:39 -0700135
hwchiu9140fd22019-10-10 15:48:30 -0700136 # Jenkins SSH host doc publisher
Kailash Khalasica590552018-05-24 15:09:42 -0700137 docs-ssh-host: 'guide.opencord.org'
Zack Williams642e5f72018-06-05 13:24:13 -0700138 docs-ssh-host-key: 'guide.opencord.org,52.9.82.207 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFHwOY3/8GucdKzBngH/FC08nHac/RJ/OheZp2+5EpOPXZG9zQW2YUbXH5A9pO76lI5CG3z3+huG62xEGo99UQU='
139
Zack Williamsefc1cb92018-07-17 14:11:08 -0700140 # For running Sonarqube configuration - see sonar.yaml for more info
141 sonar-prep-commands: ''
142 sonar-java-binaries: ''
143
Kailasha10e39f2019-03-15 10:14:14 -0700144 # siab helm-charts
Andy Bavier86737b52019-04-19 16:48:36 -0700145 siab-projects-regexp: '^(xos-core/.*|xos-profiles/seba-services/.*|xos-profiles/base-kubernetes/.*|xos-profiles/ponsim-pod/.*|workflows/att-workflow/.*|voltha/.*|onos/.*|mininet/.*|configs/seba-ponsim.yaml)$'
Zack Williams0cb78462019-04-09 18:13:28 -0700146
147 # Optionally allow JUnit results to be empty when test framework is set up,
Zack Williams3715d582020-02-24 10:40:27 -0700148 # but no tests exist. Default behavior is to fail when test results are
149 # empty. Also will not vote if no test output exists - good for repos where
150 # tests or test output generation may not yet exist.
Zack Williams0cb78462019-04-09 18:13:28 -0700151 junit-allow-empty-results: false
Zack Williamscee76d22019-04-29 13:08:20 -0700152
Zack Williams3715d582020-02-24 10:40:27 -0700153 # Allow xunit to not vote if no test files exist. Default is true because
154 # jUnit is the more commonly supported output format.
155 xunit-skip-if-no-test-files: true
156
Zack Williamscee76d22019-04-29 13:08:20 -0700157 # Unit test targets
158 # List of targets to run when testing a patchset, run with make or similar
159 # defaults to just 'test', multiple targets should be space separated
160 unit-test-targets: 'test'
161
162 # whether to "keep going" on multiple tests if one fails
163 # maps to the `-k` option passed to make in make-unit.yaml
164 unit-test-keep-going: false
165
166 # golang specific variables
167 # dest-gopath handles checking out patchsets and putting them into a GOPATH
168 # This portion of the path should be included: `$GOPATH/src/<dest-gopath>/<project>"
169 # If blank, golang related variables won't be set
170 dest-gopath: ''
Zack Williamsc1d6a5e2019-05-06 16:35:58 -0700171
172 # github organization
Zack Williams27cd3e52018-09-18 16:44:50 -0700173 # Specifies the github organization to operate on. Default is blank which
174 # may either be invalid, or specify that gerrit should be used instead.
175 # Currently used with: synopsys detect, github-release
Zack Williamsc1d6a5e2019-05-06 16:35:58 -0700176 github-organization: ''
177
Zack Williams27cd3e52018-09-18 16:44:50 -0700178 # release targets
179 # List of targets run when creating a software release, run with make or
180 # similar. Default is "release", multiple targets may be space separated
181 # (when using make).
182 release-targets: 'release'
183
184 # artifact glob
185 # Shell glob expression used to select which files are included as binaries
186 # in a release.
187 # Currently used with: github-release
188 artifact-glob: ''
189
Zack Williams234dc922019-08-30 17:03:57 -0700190 # JDK distribution to use
191 # Give the version of the JDK to use when building
192 # Parameter is used with `update-java-alternatives --set <jdk-distribution>`
193 jdk-distribution: 'java-11-amazon-corretto'
hwchiuf4a77ce2019-09-06 17:15:21 -0700194
195 # skip directories
196 # Used to skip directories in supported tests
197 skip-dirs: ''
Matteo Scandolo3aba73a2019-09-27 09:03:38 -0700198
199 # maintainers
200 # Used to notify users in supported tests
201 maintainers: 'zdw@opennetworking.org'