blob: 6fe3b093e86c6a1743251890d58ac0bf8a59dea5 [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
Matteo Scandolob4f81882020-07-30 09:45:15 -07007 # used to enable disable jobs if the job template contains
8 # disabled: '{disable-job}'
9 disable-job: false
10
Linux Foundation Administrators14b8edb2018-01-25 13:00:42 -080011 # lftools
Zack Williams26846522019-10-04 11:49:27 -070012 lftools-version: '~=0.26.2'
Linux Foundation Administrators14b8edb2018-01-25 13:00:42 -080013
Zack Williamsbe542312022-06-23 21:51:32 -070014 # git module config
15 # LF templates require these to be set in later versions of global-jjb for git module
16 choosing_strategy: 'default'
17 submodule-disable: false
18 submodule-recursive: false
Zack Williamsccc14742020-01-22 13:15:59 -070019 submodule-timeout: 10
20
Zack Williams8e69efd2018-06-13 15:05:18 -070021 # name of the SSH key to use in most cases
Linux Foundation Administrators14b8edb2018-01-25 13:00:42 -080022 jenkins-ssh-credential: 'cord-jenkins-ssh'
Zack Williams8e69efd2018-06-13 15:05:18 -070023 gerrit-ssh-credential: 'gerrit-jenkins-user'
Linux Foundation Administrators14b8edb2018-01-25 13:00:42 -080024
Zack Williams7468c362018-04-06 09:52:30 -070025 # by default, don't depend on other jobs
26 dependency-jobs: ''
Linux Foundation Administrators14b8edb2018-01-25 13:00:42 -080027
Zack Williams15a31c82018-08-29 15:10:03 -070028 # SCM checkout locations within Jenkins Workspace
29 destination-dir: ''
30 basedir: ''
31
Zack Williamsb3292082019-10-11 17:15:18 -070032 # used to rename jobs as is required, if running same job more than once
33 # for a project
Zack Williams9d68aa32018-07-12 11:50:37 -070034 name-extension: ''
35
Zack Williams7468c362018-04-06 09:52:30 -070036 # How long to keep builds and artifacts
37 build-days-to-keep: 60
38 artifact-num-to-keep: 30
Zack Williamsac984412018-04-04 15:39:45 -070039
Matteo Scandoloa0e6f3f2020-11-12 17:13:20 -080040 # How long to keep builds and artifacts for jobs that generate a lot of artifacts
Matteo Scandolof2bae4e2020-11-13 09:32:56 -080041 big-build-days-to-keep: 10
Matteo Scandoloa0e6f3f2020-11-12 17:13:20 -080042 big-artifact-num-to-keep: 5
43
Zack Williams7468c362018-04-06 09:52:30 -070044 # list of artifacts to archive
Linux Foundation Administrators14b8edb2018-01-25 13:00:42 -080045 archive-artifacts: ''
46
Zack Williams7468c362018-04-06 09:52:30 -070047 # build timeout (minutes)
Zack Williams8e518af2019-10-23 08:45:09 -070048 build-timeout: 20
Linux Foundation Administrators14b8edb2018-01-25 13:00:42 -080049
Zack Williams641d1492018-08-17 13:31:53 -070050 # timed trigger defaults, crontab syntax
51 # H = random value hashed by name of job
52 every-hour: "H * * * *"
53 every-four-hours: "H */4 * * *"
54 every-six-hours: "H */6 * * *"
55 every-eight-hours: "H */8 * * *"
56 twice-a-day: "H */12 * * *"
57 once-a-day: "H 0 * * *"
58
Zack Williamsb3292082019-10-11 17:15:18 -070059 # The most frequently used type of Build Executor. Name is per the LF global-jjb.
60 # See build node types under "Cloud > Amazon EC2" at
Zack Williamsf4c9c402018-06-27 14:58:43 -070061 # https://jenkins.opencord.org/configure
Hung-Wei Chiuf6cbde22021-04-22 22:15:23 -070062 build-node: ubuntu18.04-basebuild-1c-1g
Linux Foundation Administrators14b8edb2018-01-25 13:00:42 -080063
Zack Williams7468c362018-04-06 09:52:30 -070064 # CORD Gerrit server definition, set in configuration
65 gerrit-server-name: 'CORD Gerrit'
66
67 # URL for Gerrit server, for use with `repo`
Zack Williamsc27ca2d2018-04-11 13:16:45 -070068 gerrit-server-url: 'https://gerrit.opencord.org'
Zack Williamsbe542312022-06-23 21:51:32 -070069 gerrit-server-ssh-url: 'ssh://jenkins@gerrit.opencord.org:29418'
Zack Williams7468c362018-04-06 09:52:30 -070070
71 # name of the manifest git repos used with the `repo` cli tool
72 cord-repo-manifest: manifest.git
73 cordqa-manifest-repo: qa-manifest.git
Kailashaad71012019-08-27 10:36:53 -070074 go-manifest-repo: go-manifest.git
75 voltha-test-manifest-repo: voltha-test-manifest.git
Zack Williams7468c362018-04-06 09:52:30 -070076
Zack Williams5e09c952018-06-12 10:19:48 -070077 # default email address to send job failure messages
78 failure-email-address: 'cord-dev@opencord.org'
79
Zack Williamsc27ca2d2018-04-11 13:16:45 -070080 # regexp for gerrit triggers
81 # list of supported branches, for branch-regexp
Kailash40e1d0f2019-03-01 13:26:49 -080082 all-branches-regexp: '.*'
Matteo Scandolo358bf5c2020-12-14 12:05:57 -100083 supported-branches-regexp: '^(master|cord-7.0|cord-6.1|seba-1.0|voltha-2.[0-9]+)$'
Kailash Khalasica590552018-05-24 15:09:42 -070084 legacy-branches-regexp: '^(cord-5.0|cord-4.1|cord-4.0)$'
Andy Bavier84971ef2020-07-01 15:37:29 -070085 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 -070086 platform-branches-regexp: '^(master|cord-7.0|cord-6.1)$'
87 seba-branches-regexp: '^(master|cord-7.0|seba-1.0)$'
Matteo Scandolo9b644ba2021-04-19 11:21:07 -070088 kind-voltha-regexp: '^(voltha-2.6|voltha-2.7)$'
Zack Williamsac984412018-04-04 15:39:45 -070089
Zack Williams3bf60d52019-06-07 12:56:10 -070090 # matchs all project repos
91 all-projects-regexp: '.*'
92
Zack Williams66500002018-09-06 15:29:05 -070093 # strictness of version checks
94 semver-strict: 0
95
Zack Williams07949bb2018-07-20 07:29:15 -070096 # matching repos that should be version tagged by the version-tag job
Zack Williamsbe542312022-06-23 21:51:32 -070097 version-tag-projects-regexp: '^(?!aether)(xos.*|comac-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|pppoe.*|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|mac-learning|goloxi|device-management-interface|bbsim-sadis-server|olttopology|opendm-agent|opendevice-manager|.*-robot)$'
Zack Williams07949bb2018-07-20 07:29:15 -070098
Zack Williamsab85b982020-01-08 11:49:37 -070099 # List of all repos that contribute to the CORD guide
100 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)$'
101
Zack Williams5d8f2532019-02-14 12:20:51 -0700102 # PyPI related publishing variables
103 #
Zack Williams5aa37e12019-02-13 13:28:29 -0700104 # Pipe-separated list of directories relative to $WORKSPACE containing
Zack Williams5d8f2532019-02-14 12:20:51 -0700105 # python modules to publish to PyPI. Default is current directory which is
106 # correct for simple modules
Zack Williams5aa37e12019-02-13 13:28:29 -0700107 pypi-module-dirs: '.'
108
109 # Which PyPI index to use. Corresponds to values in ~/.pypirc
Zack Williams5d8f2532019-02-14 12:20:51 -0700110 # 'pypi' and 'testpypi' are current options. Default to testpypi, override
111 # in the job once testing is completed
Zack Williams5aa37e12019-02-13 13:28:29 -0700112 pypi-index: 'testpypi'
113
Zack Williams96fecf02019-03-27 13:52:01 -0700114 # Commands to run within the root of the checked out repo before running
115 # the `python setup.py sdist` to generate the distribution.
116 # Primarily used for autogenerating code before publishing a repo
117 pypi-prep-commands: ''
118
Zack Williamse16a9bd2019-03-21 23:02:24 -0700119 # Name of the Docker repository (usually on DockerHub) that is the
120 # destination for images to be pushed to after building.
121 # Default is invalid - must be specified on every job.
122 docker-repo: 'default-and-invalid'
123
Zack Williams38126df2019-03-21 23:02:24 -0700124 # URL of the Docker registry (server running a docker registry) that is the
125 # destination for images to be pushed to after building. If set, must
126 # include trailing slash as a separator before the repo name.
127 # Default is blank, which maps to DockerHub.
128 docker-registry: ''
129
Zack Williamsc27ca2d2018-04-11 13:16:45 -0700130 # for matching files with file-include-regexp
131 all-files-regexp: '.*'
Zack Williams698e5d12018-12-18 16:52:39 -0700132
133 # regex to allow docs-only patchsets w/version bumps to skip code-level
134 # tests. Have to also ignore the commit message on negative match,
135 # per: https://issues.jenkins-ci.org/browse/JENKINS-19891
136 code-files-regexp: '^(?!docs|VERSION|\/COMMIT_MSG).*$'
Kailash672d2c72019-02-14 09:31:24 -0800137 api-test-files-regexp: '^(?!docs|VERSION|\/COMMIT_MSG|Jenkinsfile-*).*$'
Zack Williams698e5d12018-12-18 16:52:39 -0700138
Kailasha10e39f2019-03-15 10:14:14 -0700139 # siab helm-charts
Andy Bavier86737b52019-04-19 16:48:36 -0700140 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 -0700141
142 # Optionally allow JUnit results to be empty when test framework is set up,
Zack Williams3715d582020-02-24 10:40:27 -0700143 # but no tests exist. Default behavior is to fail when test results are
144 # empty. Also will not vote if no test output exists - good for repos where
145 # tests or test output generation may not yet exist.
Zack Williams0cb78462019-04-09 18:13:28 -0700146 junit-allow-empty-results: false
Zack Williamscee76d22019-04-29 13:08:20 -0700147
Zack Williams3715d582020-02-24 10:40:27 -0700148 # Allow xunit to not vote if no test files exist. Default is true because
149 # jUnit is the more commonly supported output format.
150 xunit-skip-if-no-test-files: true
151
Zack Williamscee76d22019-04-29 13:08:20 -0700152 # Unit test targets
153 # List of targets to run when testing a patchset, run with make or similar
154 # defaults to just 'test', multiple targets should be space separated
155 unit-test-targets: 'test'
156
157 # whether to "keep going" on multiple tests if one fails
158 # maps to the `-k` option passed to make in make-unit.yaml
159 unit-test-keep-going: false
160
161 # golang specific variables
162 # dest-gopath handles checking out patchsets and putting them into a GOPATH
163 # This portion of the path should be included: `$GOPATH/src/<dest-gopath>/<project>"
164 # If blank, golang related variables won't be set
165 dest-gopath: ''
Zack Williamsc1d6a5e2019-05-06 16:35:58 -0700166
167 # github organization
Zack Williams27cd3e52018-09-18 16:44:50 -0700168 # Specifies the github organization to operate on. Default is blank which
169 # may either be invalid, or specify that gerrit should be used instead.
Zack Williamsbe542312022-06-23 21:51:32 -0700170 # Currently used with: github-release
Zack Williamsc1d6a5e2019-05-06 16:35:58 -0700171 github-organization: ''
172
Zack Williams27cd3e52018-09-18 16:44:50 -0700173 # release targets
174 # List of targets run when creating a software release, run with make or
175 # similar. Default is "release", multiple targets may be space separated
176 # (when using make).
177 release-targets: 'release'
178
179 # artifact glob
180 # Shell glob expression used to select which files are included as binaries
181 # in a release.
182 # Currently used with: github-release
183 artifact-glob: ''
184
Zack Williams234dc922019-08-30 17:03:57 -0700185 # JDK distribution to use
186 # Give the version of the JDK to use when building
187 # Parameter is used with `update-java-alternatives --set <jdk-distribution>`
188 jdk-distribution: 'java-11-amazon-corretto'
hwchiuf4a77ce2019-09-06 17:15:21 -0700189
190 # skip directories
191 # Used to skip directories in supported tests
192 skip-dirs: ''
Matteo Scandolo3aba73a2019-09-27 09:03:38 -0700193
194 # maintainers
195 # Used to notify users in supported tests
Zack Williamsbe542312022-06-23 21:51:32 -0700196 maintainers: ''
pierventref48ebc12020-07-17 16:01:32 +0200197
198 # karaf-home
199 # Use to grab the logs or onos-diagnostics
Andrea Campanella188e50d2022-01-14 11:30:05 +0100200 karaf-home: 'apache-karaf-4.2.14'
Hung-Wei Chiubfa8fe32021-04-27 10:59:40 -0700201
202 # maven version
203 # Have to setup JAVA_HOME correctly if we upgrade to mvn36
204 maven-version: mvn33