Zack Williams | 12783ac | 2018-06-12 15:13:12 -0700 | [diff] [blame] | 1 | --- |
| 2 | # CORD versioning jobs for tagging/releasing software |
| 3 | |
| 4 | # CORD versioning conventions: |
| 5 | # |
| 6 | # 1. There is a 1:1 relationship between SemVer _release_ versions described |
| 7 | # in the commit and the git tag applied to that commit by Jenkins. |
| 8 | # |
| 9 | # 2. Non-release versions (ex: 1.0.1-dev3, etc.) can exist in multiple |
| 10 | # commits, and don't trigger creation of git tags. |
| 11 | # |
| 12 | # 3. Git history is public, and therefore shouldn't be rewritten to abandon |
| 13 | # already merged commits |
| 14 | # |
| 15 | # 4. Reverting a commit leaves it in history, so if a broken version is |
| 16 | # released, the correct action is to make a new fixed version, not try to |
| 17 | # fix the released version |
| 18 | # |
| 19 | # See also: https://jira.opencord.org/browse/CORD-3117 |
| 20 | |
| 21 | - project: |
| 22 | name: versioning-jobs |
| 23 | |
| 24 | branch-regexp: '{modern-branches-regexp}' |
Zack Williams | 07949bb | 2018-07-20 07:29:15 -0700 | [diff] [blame] | 25 | project-regexp: '{version-tag-projects-regexp}' |
Zack Williams | 12783ac | 2018-06-12 15:13:12 -0700 | [diff] [blame] | 26 | |
| 27 | jobs: |
Zack Williams | 12783ac | 2018-06-12 15:13:12 -0700 | [diff] [blame] | 28 | - 'version-tag' |
| 29 | |
| 30 | - job-template: |
| 31 | id: tag-collision-reject |
Zack Williams | b7a509a | 2018-06-22 17:00:50 -0700 | [diff] [blame] | 32 | name: "verify_{project}_tag-collision" |
Zack Williams | 12783ac | 2018-06-12 15:13:12 -0700 | [diff] [blame] | 33 | description: | |
| 34 | Created by {id} job-template from ci-management/jjb/versioning.yaml |
| 35 | Checks for changes to version files, and that they don't duplicate tags |
| 36 | already in the git repo. |
| 37 | |
| 38 | triggers: |
| 39 | - cord-infra-gerrit-trigger-patchset: |
| 40 | gerrit-server-name: '{gerrit-server-name}' |
Zack Williams | b7a509a | 2018-06-22 17:00:50 -0700 | [diff] [blame] | 41 | project-regexp: '^{project}$' |
Zack Williams | 12783ac | 2018-06-12 15:13:12 -0700 | [diff] [blame] | 42 | branch-regexp: '{branch-regexp}' |
| 43 | file-include-regexp: '{all-files-regexp}' |
| 44 | dependency-jobs: '{dependency-jobs}' |
| 45 | |
| 46 | properties: |
| 47 | - cord-infra-properties: |
| 48 | build-days-to-keep: '{build-days-to-keep}' |
| 49 | artifact-num-to-keep: '{artifact-num-to-keep}' |
| 50 | |
| 51 | wrappers: |
| 52 | - lf-infra-wrappers: |
| 53 | build-timeout: '{build-timeout}' |
Zack Williams | 8e69efd | 2018-06-13 15:05:18 -0700 | [diff] [blame] | 54 | jenkins-ssh-credential: '{gerrit-ssh-credential}' |
Zack Williams | 12783ac | 2018-06-12 15:13:12 -0700 | [diff] [blame] | 55 | |
| 56 | scm: |
| 57 | - lf-infra-gerrit-scm: |
| 58 | git-url: '$GIT_URL/$GERRIT_PROJECT' |
| 59 | refspec: '$GERRIT_REFSPEC' |
| 60 | branch: '$GERRIT_BRANCH' |
| 61 | submodule-recursive: 'false' |
| 62 | choosing-strategy: gerrit |
Zack Williams | 8e69efd | 2018-06-13 15:05:18 -0700 | [diff] [blame] | 63 | jenkins-ssh-credential: '{gerrit-ssh-credential}' |
Zack Williams | 12783ac | 2018-06-12 15:13:12 -0700 | [diff] [blame] | 64 | |
| 65 | node: '{build-node}' |
| 66 | project-type: freestyle |
| 67 | concurrent: true |
| 68 | |
| 69 | builders: |
| 70 | - shell: !include-raw-escape: shell/tagcollisionreject.sh |
| 71 | |
| 72 | |
| 73 | - job-template: |
| 74 | id: version-tag |
| 75 | name: "version-tag" |
| 76 | description: | |
| 77 | Created by {id} job-template from ci-management/jjb/release.yaml |
| 78 | When a patch is merged, check if it contains a SemVer released version |
| 79 | file and if so tags the commit in git with that same version. |
| 80 | |
| 81 | triggers: |
| 82 | - cord-infra-gerrit-trigger-merge: |
| 83 | gerrit-server-name: '{gerrit-server-name}' |
Zack Williams | 8e69efd | 2018-06-13 15:05:18 -0700 | [diff] [blame] | 84 | project-regexp: '{project-regexp}' |
Zack Williams | 12783ac | 2018-06-12 15:13:12 -0700 | [diff] [blame] | 85 | branch-regexp: '{branch-regexp}' |
| 86 | file-include-regexp: '{all-files-regexp}' |
| 87 | dependency-jobs: '{dependency-jobs}' |
| 88 | |
| 89 | properties: |
| 90 | - cord-infra-properties: |
| 91 | build-days-to-keep: '{build-days-to-keep}' |
| 92 | artifact-num-to-keep: '{artifact-num-to-keep}' |
| 93 | |
| 94 | wrappers: |
| 95 | - lf-infra-wrappers: |
| 96 | build-timeout: '{build-timeout}' |
Zack Williams | 8e69efd | 2018-06-13 15:05:18 -0700 | [diff] [blame] | 97 | jenkins-ssh-credential: '{gerrit-ssh-credential}' |
Zack Williams | 12783ac | 2018-06-12 15:13:12 -0700 | [diff] [blame] | 98 | |
| 99 | scm: |
| 100 | - lf-infra-gerrit-scm: |
| 101 | git-url: '$GIT_URL/$GERRIT_PROJECT' |
| 102 | refspec: '$GERRIT_REFSPEC' |
| 103 | branch: '$GERRIT_BRANCH' |
| 104 | submodule-recursive: 'false' |
| 105 | choosing-strategy: gerrit |
Zack Williams | 8e69efd | 2018-06-13 15:05:18 -0700 | [diff] [blame] | 106 | jenkins-ssh-credential: '{gerrit-ssh-credential}' |
Zack Williams | 12783ac | 2018-06-12 15:13:12 -0700 | [diff] [blame] | 107 | |
| 108 | node: '{build-node}' |
| 109 | project-type: freestyle |
| 110 | concurrent: true |
| 111 | |
| 112 | builders: |
| 113 | - shell: !include-raw-escape: shell/versiontag.sh |
| 114 | |