|
| 1 | +/* |
| 2 | + Jenkins Shared Library: |
| 3 | + ---------------------- |
| 4 | + shared-library-mcu16ce - https://bitbucket.microchip.com/scm/citd/shared-library-mcu16ce.git |
| 5 | + shared-library-common - https://bitbucket.microchip.com/scm/citd/shared-library-common.git |
| 6 | +*/ |
| 7 | +@Library(['shared-library-mcu16ce@master', 'shared-library-common@master']) _ |
| 8 | + |
| 9 | +pipeline { |
| 10 | + agent { |
| 11 | + kubernetes { |
| 12 | + defaultContainer 'xc16-mplabx-sonar-fmpp-python' |
| 13 | + yamlFile '.citd/cloudprovider.yml' |
| 14 | + } |
| 15 | + } |
| 16 | + |
| 17 | + environment { |
| 18 | + /* |
| 19 | + Common Information |
| 20 | + */ |
| 21 | + NOTIFICATION_EMAIL = 'e50beea8.microchip.com@amer.teams.ms' |
| 22 | + // GitHub production organization name |
| 23 | + GITHUB_PRODUCTION_ORGANIZATION = "microchip-pic-avr-solutions" |
| 24 | + |
| 25 | + /* |
| 26 | + GitHub Deploy Stage Information |
| 27 | + */ |
| 28 | + //This is the BitBucket source repo URL to be deployed |
| 29 | + BITBUCKET_SOURCE_URL = 'https://bitbucket.microchip.com/scm/mcu16ce/pic24e-dspic33e-code-examples.git' |
| 30 | + //Files or folders to be excluded from deployment, if multiple files or folders use comma separator |
| 31 | + DEPLOY_EXCLUDE_FOLDER_FILE_LIST = 'mchp_private,.mchp_private,sandbox,.sandbox' |
| 32 | + //Branch(s) to be deployed, if multiple branches use comma separator. DEPLOY_BRANCH_LIST is the target branch of the PR. |
| 33 | + DEPLOY_BRANCH_LIST = "master" |
| 34 | + |
| 35 | + /* |
| 36 | + GitHub Page Stage Information |
| 37 | + List of GitHub Page Options: |
| 38 | + ---------------------------- |
| 39 | + 1. GITHUB_PAGES_NONE ( Branch: None, index file path: None ) |
| 40 | + 2. GITHUB_PAGES_MASTER_ROOT ( Branch: Master, index file path: /root ) |
| 41 | + 3. GITHUB_PAGES_MASTER_DOCS ( Branch: Develop, index file path: /Docs ) |
| 42 | + 4. GITHUB_PAGES_DEVELOP_ROOT ( Branch: Master, index file path: /root ) |
| 43 | + 5. GITHUB_PAGES_DEVELOP_DOCS ( Branch: Develop, index file path: /Docs ) |
| 44 | + */ |
| 45 | + GITHUB_PAGES = 'GITHUB_PAGES_NONE' |
| 46 | + |
| 47 | + /* |
| 48 | + Project Build Stage Information |
| 49 | + */ |
| 50 | + MPLABX_PROJECT_SOURCE = "../" |
| 51 | + } |
| 52 | + |
| 53 | + options { |
| 54 | + timestamps() |
| 55 | + timeout(time: 20, unit: 'MINUTES') |
| 56 | + } |
| 57 | + |
| 58 | + stages { |
| 59 | + stage('Checkout') { |
| 60 | + steps { |
| 61 | + checkout scm |
| 62 | + } |
| 63 | + } |
| 64 | + |
| 65 | + stage('project config update') { |
| 66 | + steps { |
| 67 | + script { |
| 68 | + mplabxProjectConfigUpdate( |
| 69 | + sourceFilePath: "${env.MPLABX_PROJECT_SOURCE}" |
| 70 | + ) |
| 71 | + } |
| 72 | + } |
| 73 | + } |
| 74 | + |
| 75 | + stage('Build') { |
| 76 | + steps { |
| 77 | + script { |
| 78 | + mplabxProjectBuild( |
| 79 | + sourceFilePath: "${env.MPLABX_PROJECT_SOURCE}" |
| 80 | + ) |
| 81 | + } |
| 82 | + } |
| 83 | + } |
| 84 | + |
| 85 | + |
| 86 | + //MisraCheck code analysis |
| 87 | + stage('MISRA Check') { |
| 88 | + steps { |
| 89 | + script { |
| 90 | + misraCheck( |
| 91 | + sourceProjectPath: "${env.MPLABX_PROJECT_SOURCE}" |
| 92 | + ) |
| 93 | + } |
| 94 | + } |
| 95 | + } |
| 96 | + |
| 97 | + // Validate main.json file |
| 98 | + stage('Validate main.json') { |
| 99 | + steps { |
| 100 | + script { |
| 101 | + validateMetaData() |
| 102 | + } |
| 103 | + } |
| 104 | + } |
| 105 | + |
| 106 | + // Creating tag in Bitbucket repo |
| 107 | + stage('Bitbucket Tag Creation') { |
| 108 | + when { |
| 109 | + anyOf { |
| 110 | + allOf { |
| 111 | + not { changeRequest() } |
| 112 | + anyOf {branch 'master';} |
| 113 | + } |
| 114 | + } |
| 115 | + } |
| 116 | + |
| 117 | + steps { |
| 118 | + script { |
| 119 | + bitbucketTagCreation() |
| 120 | + } |
| 121 | + } |
| 122 | + } |
| 123 | + |
| 124 | + stage('Doxygen files generation') { |
| 125 | + when { |
| 126 | + anyOf { |
| 127 | + allOf { |
| 128 | + not { changeRequest() } |
| 129 | + } |
| 130 | + } |
| 131 | + } |
| 132 | + steps { |
| 133 | + container('buildtools') { |
| 134 | + script { |
| 135 | + doxygen() |
| 136 | + } |
| 137 | + } |
| 138 | + } |
| 139 | + } |
| 140 | + |
| 141 | + // GitHub repo creation |
| 142 | + stage('GitHub Repo Creation') { |
| 143 | + when { |
| 144 | + anyOf { |
| 145 | + allOf { |
| 146 | + not { changeRequest() } |
| 147 | + anyOf {branch 'master'; branch 'test_deploy';} |
| 148 | + } |
| 149 | + } |
| 150 | + } |
| 151 | + |
| 152 | + steps { |
| 153 | + script { |
| 154 | + githubRepoCreate( |
| 155 | + githubOrgName: "${env.GITHUB_PRODUCTION_ORGANIZATION}", |
| 156 | + deployBranchList: "${DEPLOY_BRANCH_LIST}" |
| 157 | + ) |
| 158 | + } |
| 159 | + } |
| 160 | + } |
| 161 | + |
| 162 | + // Deploying the code to GitHub |
| 163 | + stage('GitHub Deploy Source') { |
| 164 | + when { |
| 165 | + anyOf { |
| 166 | + allOf { |
| 167 | + not { changeRequest() } |
| 168 | + anyOf {branch 'master'; branch 'test_deploy';} |
| 169 | + } |
| 170 | + } |
| 171 | + } |
| 172 | + |
| 173 | + steps { |
| 174 | + script { |
| 175 | + githubDeploySource( |
| 176 | + bitbucketUrl: "${env.BITBUCKET_SOURCE_URL}", |
| 177 | + deployBranchList: "${env.DEPLOY_BRANCH_LIST}", |
| 178 | + deployExcludeFileList: "${env.DEPLOY_EXCLUDE_FOLDER_FILE_LIST}", |
| 179 | + githubOrgName: "${env.GITHUB_PRODUCTION_ORGANIZATION}" |
| 180 | + ) |
| 181 | + } |
| 182 | + } |
| 183 | + } |
| 184 | + |
| 185 | + // Creating GitHub release |
| 186 | + stage('GitHub release') { |
| 187 | + when { |
| 188 | + anyOf { |
| 189 | + allOf { |
| 190 | + not { changeRequest() } |
| 191 | + anyOf {branch 'master'; branch 'test_deploy';} |
| 192 | + } |
| 193 | + } |
| 194 | + } |
| 195 | + |
| 196 | + steps { |
| 197 | + script { |
| 198 | + githubReleaseCreate( |
| 199 | + githubOrgName: "${env.GITHUB_PRODUCTION_ORGANIZATION}", |
| 200 | + deployBranchList: "${DEPLOY_BRANCH_LIST}" |
| 201 | + ) |
| 202 | + } |
| 203 | + } |
| 204 | + } |
| 205 | + |
| 206 | + // Creating GitHub Page |
| 207 | + stage('GitHub Page Create') { |
| 208 | + when { |
| 209 | + anyOf { |
| 210 | + allOf { |
| 211 | + not { changeRequest() } |
| 212 | + anyOf {branch 'master';} |
| 213 | + } |
| 214 | + } |
| 215 | + } |
| 216 | + |
| 217 | + steps { |
| 218 | + script { |
| 219 | + githubPageCreate( |
| 220 | + githubPage: "${env.GITHUB_PAGES}", |
| 221 | + githubOrgName: "${env.GITHUB_PRODUCTION_ORGANIZATION}" |
| 222 | + ) |
| 223 | + } |
| 224 | + } |
| 225 | + } |
| 226 | + |
| 227 | + //Deploying the Github content to portal |
| 228 | + stage('Portal-Deploy') { |
| 229 | + when { |
| 230 | + allOf { |
| 231 | + not { changeRequest() } |
| 232 | + anyOf {branch 'master';} |
| 233 | + } |
| 234 | + } |
| 235 | + steps { |
| 236 | + script { |
| 237 | + portalDeploy( |
| 238 | + githubOrgName: "${env.GITHUB_PRODUCTION_ORGANIZATION}" |
| 239 | + ) |
| 240 | + } |
| 241 | + } |
| 242 | + } |
| 243 | + } |
| 244 | + |
| 245 | + post { |
| 246 | + success{ |
| 247 | + script { |
| 248 | + sendMail( |
| 249 | + mailId: "${env.NOTIFICATION_EMAIL}", |
| 250 | + subject: "Successful Pipeline: ${currentBuild.fullDisplayName}", |
| 251 | + body: "Something is right with ${env.BUILD_URL}" |
| 252 | + ) |
| 253 | + } |
| 254 | + } |
| 255 | + failure { |
| 256 | + script { |
| 257 | + sendMail( |
| 258 | + mailId: "${env.NOTIFICATION_EMAIL}", |
| 259 | + subject: "Failure Pipeline: ${currentBuild.fullDisplayName}", |
| 260 | + body: "Something is right with ${env.BUILD_URL}" |
| 261 | + ) |
| 262 | + } |
| 263 | + } |
| 264 | + } |
| 265 | +} |
0 commit comments