Zack Williams | 7468c36 | 2018-04-06 09:52:30 -0700 | [diff] [blame] | 1 | --- |
| 2 | # CORD lint and static code validation job templates |
Zack Williams | 92f9b1f | 2018-04-11 09:58:49 -0700 | [diff] [blame] | 3 | # These are invoked by the per-git-repo jobs stored in verify/ |
Zack Williams | 7468c36 | 2018-04-06 09:52:30 -0700 | [diff] [blame] | 4 | |
| 5 | # Verify that there is valid license/copyright on files |
| 6 | - job-template: |
| 7 | id: verify-licensed |
Zack Williams | 92f9b1f | 2018-04-11 09:58:49 -0700 | [diff] [blame] | 8 | name: 'verify_{project}_licensed' |
| 9 | description: | |
Zack Williams | 92f9b1f | 2018-04-11 09:58:49 -0700 | [diff] [blame] | 10 | Created by verify-licensed job-template from ci-management/jjb/lint.yaml |
Zack Williams | 7468c36 | 2018-04-06 09:52:30 -0700 | [diff] [blame] | 11 | |
| 12 | triggers: |
| 13 | - cord-infra-gerrit-trigger-patchset: |
| 14 | gerrit-server-name: '{gerrit-server-name}' |
| 15 | project-regexp: '^{project}$' |
| 16 | branch-regexp: '{branch-regexp}' |
Zack Williams | c27ca2d | 2018-04-11 13:16:45 -0700 | [diff] [blame] | 17 | file-include-regexp: '{all-files-regexp}' |
Zack Williams | 7468c36 | 2018-04-06 09:52:30 -0700 | [diff] [blame] | 18 | dependency-jobs: '{dependency-jobs}' |
| 19 | |
| 20 | properties: |
| 21 | - cord-infra-properties: |
| 22 | build-days-to-keep: '{build-days-to-keep}' |
| 23 | artifact-num-to-keep: '{artifact-num-to-keep}' |
| 24 | |
| 25 | wrappers: |
| 26 | - lf-infra-wrappers: |
| 27 | build-timeout: '{build-timeout}' |
| 28 | jenkins-ssh-credential: '{jenkins-ssh-credential}' |
| 29 | |
| 30 | scm: |
| 31 | - lf-infra-gerrit-scm: |
| 32 | git-url: '$GIT_URL/$GERRIT_PROJECT' |
| 33 | refspec: '$GERRIT_REFSPEC' |
| 34 | branch: '$GERRIT_BRANCH' |
| 35 | submodule-recursive: 'false' |
| 36 | choosing-strategy: gerrit |
| 37 | jenkins-ssh-credential: '{jenkins-ssh-credential}' |
| 38 | |
| 39 | node: '{build-node}' |
| 40 | project-type: freestyle |
| 41 | concurrent: true |
| 42 | |
| 43 | builders: |
| 44 | - shell: !include-raw-escape: shell/licensecheck.sh |
| 45 | |
| 46 | |
| 47 | # run `ansible-lint` to validate ansible playbooks/roles |
| 48 | - job-template: |
| 49 | id: verify-ansible-lint |
Zack Williams | 92f9b1f | 2018-04-11 09:58:49 -0700 | [diff] [blame] | 50 | name: 'verify_{project}_ansible-lint' |
| 51 | description: | |
Zack Williams | 92f9b1f | 2018-04-11 09:58:49 -0700 | [diff] [blame] | 52 | Created by verify-ansible-lint job-template from ci-management/jjb/lint.yaml |
Zack Williams | 7468c36 | 2018-04-06 09:52:30 -0700 | [diff] [blame] | 53 | |
| 54 | triggers: |
| 55 | - cord-infra-gerrit-trigger-patchset: |
| 56 | gerrit-server-name: '{gerrit-server-name}' |
| 57 | project-regexp: '^{project}$' |
| 58 | branch-regexp: '{branch-regexp}' |
Zack Williams | c27ca2d | 2018-04-11 13:16:45 -0700 | [diff] [blame] | 59 | file-include-regexp: '{all-files-regexp}' |
Zack Williams | 7468c36 | 2018-04-06 09:52:30 -0700 | [diff] [blame] | 60 | dependency-jobs: '{dependency-jobs}' |
| 61 | |
| 62 | properties: |
| 63 | - cord-infra-properties: |
| 64 | build-days-to-keep: '{build-days-to-keep}' |
| 65 | artifact-num-to-keep: '{artifact-num-to-keep}' |
| 66 | |
| 67 | wrappers: |
| 68 | - lf-infra-wrappers: |
| 69 | build-timeout: '{build-timeout}' |
| 70 | jenkins-ssh-credential: '{jenkins-ssh-credential}' |
| 71 | |
| 72 | scm: |
| 73 | - lf-infra-gerrit-scm: |
| 74 | git-url: '$GIT_URL/$GERRIT_PROJECT' |
| 75 | refspec: '$GERRIT_REFSPEC' |
| 76 | branch: '$GERRIT_BRANCH' |
| 77 | submodule-recursive: 'false' |
| 78 | choosing-strategy: gerrit |
| 79 | jenkins-ssh-credential: '{jenkins-ssh-credential}' |
| 80 | |
| 81 | node: '{build-node}' |
| 82 | project-type: freestyle |
| 83 | concurrent: true |
| 84 | |
| 85 | builders: |
| 86 | - shell: !include-raw-escape: shell/ansiblelint.sh |
| 87 | |
| 88 | |
| 89 | # run `helm lint --strict` to validate helm charts |
| 90 | - job-template: |
| 91 | id: verify-helm-lint |
Zack Williams | 92f9b1f | 2018-04-11 09:58:49 -0700 | [diff] [blame] | 92 | name: 'verify_{project}_helm-lint' |
| 93 | description: | |
Zack Williams | 92f9b1f | 2018-04-11 09:58:49 -0700 | [diff] [blame] | 94 | Created by verify-helm-lint job-template from ci-management/jjb/lint.yaml |
Zack Williams | 7468c36 | 2018-04-06 09:52:30 -0700 | [diff] [blame] | 95 | |
| 96 | triggers: |
| 97 | - cord-infra-gerrit-trigger-patchset: |
| 98 | gerrit-server-name: '{gerrit-server-name}' |
| 99 | project-regexp: '^{project}$' |
| 100 | branch-regexp: '{branch-regexp}' |
Zack Williams | c27ca2d | 2018-04-11 13:16:45 -0700 | [diff] [blame] | 101 | file-include-regexp: '{all-files-regexp}' |
Zack Williams | 7468c36 | 2018-04-06 09:52:30 -0700 | [diff] [blame] | 102 | dependency-jobs: '{dependency-jobs}' |
| 103 | |
| 104 | properties: |
| 105 | - cord-infra-properties: |
| 106 | build-days-to-keep: '{build-days-to-keep}' |
| 107 | artifact-num-to-keep: '{artifact-num-to-keep}' |
| 108 | |
| 109 | wrappers: |
| 110 | - lf-infra-wrappers: |
| 111 | build-timeout: '{build-timeout}' |
| 112 | jenkins-ssh-credential: '{jenkins-ssh-credential}' |
| 113 | |
| 114 | scm: |
| 115 | - lf-infra-gerrit-scm: |
| 116 | git-url: '$GIT_URL/$GERRIT_PROJECT' |
| 117 | refspec: '$GERRIT_REFSPEC' |
| 118 | branch: '$GERRIT_BRANCH' |
| 119 | submodule-recursive: 'false' |
| 120 | choosing-strategy: gerrit |
| 121 | jenkins-ssh-credential: '{jenkins-ssh-credential}' |
| 122 | |
| 123 | node: '{build-node}' |
| 124 | project-type: freestyle |
| 125 | concurrent: true |
| 126 | |
| 127 | builders: |
Zack Williams | 61f0111 | 2018-05-15 15:57:42 -0700 | [diff] [blame] | 128 | - shell: | |
Zack Williams | 82a8da4 | 2018-08-20 11:11:12 -0700 | [diff] [blame] | 129 | #!/usr/bin/env bash |
| 130 | set -eu -o pipefail |
| 131 | |
Zack Williams | 61f0111 | 2018-05-15 15:57:42 -0700 | [diff] [blame] | 132 | helm init --client-only |
| 133 | helm repo add incubator https://kubernetes-charts-incubator.storage.googleapis.com/ |
Zack Williams | b557a21 | 2018-08-17 14:53:10 -0700 | [diff] [blame] | 134 | helm repo add rook-beta https://charts.rook.io/beta |
Andy Bavier | 1b5a2cc | 2018-07-17 10:32:23 -0700 | [diff] [blame] | 135 | helm repo add cord https://charts.opencord.org/master |
Zack Williams | 61f0111 | 2018-05-15 15:57:42 -0700 | [diff] [blame] | 136 | |
Zack Williams | 82a8da4 | 2018-08-20 11:11:12 -0700 | [diff] [blame] | 137 | ./scripts/helmlint.sh clean |
Zack Williams | 32293ee | 2018-05-18 09:15:13 -0700 | [diff] [blame] | 138 | |
| 139 | |
| 140 | # run `shellcheck` to validate shell scripts charts |
| 141 | - job-template: |
| 142 | id: verify-shellcheck |
| 143 | name: 'verify_{project}_shellcheck' |
| 144 | description: | |
| 145 | Created by {id} job-template from ci-management/jjb/lint.yaml |
| 146 | |
| 147 | triggers: |
| 148 | - cord-infra-gerrit-trigger-patchset: |
| 149 | gerrit-server-name: '{gerrit-server-name}' |
| 150 | project-regexp: '^{project}$' |
| 151 | branch-regexp: '{branch-regexp}' |
| 152 | file-include-regexp: '{all-files-regexp}' |
| 153 | dependency-jobs: '{dependency-jobs}' |
| 154 | |
| 155 | properties: |
| 156 | - cord-infra-properties: |
| 157 | build-days-to-keep: '{build-days-to-keep}' |
| 158 | artifact-num-to-keep: '{artifact-num-to-keep}' |
| 159 | |
| 160 | wrappers: |
| 161 | - lf-infra-wrappers: |
| 162 | build-timeout: '{build-timeout}' |
| 163 | jenkins-ssh-credential: '{jenkins-ssh-credential}' |
| 164 | |
| 165 | scm: |
| 166 | - lf-infra-gerrit-scm: |
| 167 | git-url: '$GIT_URL/$GERRIT_PROJECT' |
| 168 | refspec: '$GERRIT_REFSPEC' |
| 169 | branch: '$GERRIT_BRANCH' |
| 170 | submodule-recursive: 'false' |
| 171 | choosing-strategy: gerrit |
| 172 | jenkins-ssh-credential: '{jenkins-ssh-credential}' |
| 173 | |
| 174 | node: '{build-node}' |
| 175 | project-type: freestyle |
| 176 | concurrent: true |
| 177 | |
| 178 | builders: |
| 179 | - shell: !include-raw-escape: shell/shcheck.sh |