Linux Foundation Administrators | 3cbbe23 | 2017-10-12 12:44:21 -0700 | [diff] [blame] | 1 | --- |
| 2 | # GLOBAL jenkins defaults |
| 3 | |
| 4 | - defaults: |
| 5 | name: global |
| 6 | |
| 7 | # lftools |
| 8 | lftools-version: <1.0.0 |
| 9 | |
| 10 | # lf-infra-defaults |
| 11 | jenkins-ssh-credential: 'onos-jenkins-ssh' |
| 12 | |
Linux Foundation Administrators | 3cbbe23 | 2017-10-12 12:44:21 -0700 | [diff] [blame] | 13 | # Timeout in minutes |
Brian O'Connor | 9fbe772 | 2017-10-27 12:44:04 -0700 | [diff] [blame] | 14 | #TODO deprecate this (should be project template specific) |
Linux Foundation Administrators | 3cbbe23 | 2017-10-12 12:44:21 -0700 | [diff] [blame] | 15 | build-timeout: 360 |
Zack Williams | 3403ff4 | 2019-08-13 18:30:42 -0700 | [diff] [blame] | 16 | |
| 17 | # How long to keep builds and artifacts |
| 18 | build-days-to-keep: 60 |
| 19 | artifact-num-to-keep: 30 |
| 20 | |
| 21 | # The most frequently used type of build node |
| 22 | # see other build node types under "Cloud > Amazon EC2" at |
| 23 | # https://jenkins.onosproject.org/configure |
| 24 | build-node: ubuntu16.04-basebuild-1c-1g |
Linux Foundation Administrators | 3cbbe23 | 2017-10-12 12:44:21 -0700 | [diff] [blame] | 25 | |
| 26 | # default gerrit server definition |
Brian O'Connor | 9fbe772 | 2017-10-27 12:44:04 -0700 | [diff] [blame] | 27 | #server-name: 'ONOS Project Gerrit' |
Linux Foundation Administrators | 3cbbe23 | 2017-10-12 12:44:21 -0700 | [diff] [blame] | 28 | gerrit-server-name: 'ONOS Project Gerrit' |
| 29 | |
Zack Williams | 3403ff4 | 2019-08-13 18:30:42 -0700 | [diff] [blame] | 30 | # User account with gerrit SSH credentials |
| 31 | gerrit-ssh-credential: 'onos-gerrit-ssh' |
| 32 | |
| 33 | # Java glob of artifacts to archive |
Linux Foundation Administrators | 3cbbe23 | 2017-10-12 12:44:21 -0700 | [diff] [blame] | 34 | archive-artifacts: '' |
| 35 | |
Zack Williams | 3403ff4 | 2019-08-13 18:30:42 -0700 | [diff] [blame] | 36 | # by default, don't depend on other jobs |
| 37 | dependency-jobs: '' |
Linux Foundation Administrators | 3cbbe23 | 2017-10-12 12:44:21 -0700 | [diff] [blame] | 38 | |
Zack Williams | 3403ff4 | 2019-08-13 18:30:42 -0700 | [diff] [blame] | 39 | # used to rename jobs if required |
| 40 | name-extension: '' |
Linux Foundation Administrators | 3cbbe23 | 2017-10-12 12:44:21 -0700 | [diff] [blame] | 41 | |
Zack Williams | 3403ff4 | 2019-08-13 18:30:42 -0700 | [diff] [blame] | 42 | # regexes for branch matching |
| 43 | all-branches-regexp: '.*' |
| 44 | supported-branches-regexp: '.*' |
| 45 | |
| 46 | # regexes for file matching |
| 47 | all-files-regexp: '.*' |
| 48 | |
| 49 | # strictness of version checks - if set to 1, then only allow SemVer versioning |
| 50 | semver-strict: 0 |
| 51 | |
| 52 | # Make test targets |
| 53 | # List of targets to run when testing a patchset, run with make |
| 54 | # defaults to just 'test', multiple targets should be space separated |
| 55 | make-test-targets: 'test' |
| 56 | |
| 57 | # whether to "keep going" on multiple tests if one fails |
| 58 | # maps to the `-k` option passed to make in make-test.yaml |
| 59 | make-test-keep-going: false |
| 60 | |
| 61 | # golang specific variables |
| 62 | # dest-gopath handles checking out patchsets and putting them into a GOPATH |
| 63 | # This portion of the path should be included: `$GOPATH/src/<dest-gopath>/<project>" |
| 64 | # If blank, golang related variables won't be set |
| 65 | dest-gopath: '' |