|
| 1 | +import groovy.json.* |
| 2 | +node { |
| 3 | + checkout scm |
| 4 | + // these are script global vars |
| 5 | + pipeutils = load("utils.groovy") |
| 6 | + pipecfg = pipeutils.load_pipecfg() |
| 7 | +} |
| 8 | + |
| 9 | +properties([ |
| 10 | + pipelineTriggers([ |
| 11 | + // check once a month |
| 12 | + pollSCM('H H 1 * *') |
| 13 | + ]), |
| 14 | + buildDiscarder(logRotator( |
| 15 | + numToKeepStr: '100', |
| 16 | + artifactNumToKeepStr: '100' |
| 17 | + )), |
| 18 | + durabilityHint('PERFORMANCE_OPTIMIZED') |
| 19 | +]) |
| 20 | + |
| 21 | +repo = "coreosbot-releng/fedora-coreos-pipeline" |
| 22 | +botCreds = "github-coreosbot-releng-token-username-password" |
| 23 | +pr_branch = "pluginsupdate" |
| 24 | + |
| 25 | +def getPluginLatestVersion(pluginsUpdate) { |
| 26 | + // Extract the plugin version from the URL |
| 27 | + def versionPattern = /\/([^\/]+)\/([^\/]+)\/([^\/]+)\.hpi/ |
| 28 | + def matcher = (pluginsUpdate =~ versionPattern) |
| 29 | + def pluginVersion |
| 30 | + |
| 31 | + if (matcher.find()) { |
| 32 | + def groupId = matcher.group(1) |
| 33 | + pluginVersion = matcher.group(2) |
| 34 | + } else { |
| 35 | + println "Unable to extract plugin version from the URL." |
| 36 | + } |
| 37 | + return pluginVersion |
| 38 | +} |
| 39 | + |
| 40 | +lock(resource: "bump-jenkins") { |
| 41 | + node{ |
| 42 | + try { |
| 43 | + shwrap(""" |
| 44 | + git config --global user.name "CoreOS Bot Releng" |
| 45 | + git config --global user.email " [email protected]" |
| 46 | + """) |
| 47 | + |
| 48 | + def pluginslist |
| 49 | + def pluginsToUpdate = [:] |
| 50 | + def haveChanges=false |
| 51 | + |
| 52 | + stage("Read plugins.txt") { |
| 53 | + shwrapCapture(""" |
| 54 | + if [[ -d fedora-coreos-pipeline ]]; then |
| 55 | + rm -rf fedora-coreos-pipeline |
| 56 | + fi |
| 57 | + git clone --branch pluginsupdate https://github.com/coreosbot-releng/fedora-coreos-pipeline.git |
| 58 | + cd fedora-coreos-pipeline |
| 59 | + |
| 60 | + # Check if the branch exists |
| 61 | + if git ls-remote --heads origin ${pr_branch} | grep ${pr_branch}; then |
| 62 | + git checkout ${pr_branch} |
| 63 | + else |
| 64 | + git checkout -b ${pr_branch} |
| 65 | + fi |
| 66 | + """) |
| 67 | + def plugins_lockfile = "jenkins/controller/plugins.txt" |
| 68 | + pluginslist = shwrapCapture("cat $plugins_lockfile | grep -v ^#").split('\n') |
| 69 | + } |
| 70 | + |
| 71 | + stage("Check for plugin updates") { |
| 72 | + def pluginsUpdate |
| 73 | + pluginslist.each { plugin -> |
| 74 | + def parts = plugin.split(':') |
| 75 | + if (parts.size() == 2) { |
| 76 | + def pluginName = parts[0] |
| 77 | + def currentVersion = parts[1] |
| 78 | + pluginsUpdate = shwrapCapture("curl -Ls -o /dev/null -w '%{url_effective}' https://updates.jenkins.io/download/plugins/${pluginName}/latest/${pluginName}.hpi") |
| 79 | + def latestVersion = getPluginLatestVersion(pluginsUpdate) |
| 80 | + if (latestVersion.toString() != currentVersion.toString()) { |
| 81 | + haveChanges = true |
| 82 | + pluginsToUpdate["${pluginName}"] = [currentVersion, latestVersion] |
| 83 | + println("Plugin: ${pluginName} current version is ${currentVersion}, it will be updated to latest version: ${latestVersion}") |
| 84 | + shwrap(""" |
| 85 | + cd fedora-coreos-pipeline |
| 86 | + sed -i 's/${pluginName}:${currentVersion}/${pluginName}:${latestVersion}/g' jenkins/controller/plugins.txt |
| 87 | + """) |
| 88 | + } |
| 89 | + else { |
| 90 | + println("The latest version of ${pluginName} is already installed: ${currentVersion}") |
| 91 | + } |
| 92 | + } |
| 93 | + else { |
| 94 | + println("ERROR: unexpected") |
| 95 | + } |
| 96 | + } |
| 97 | + } |
| 98 | + |
| 99 | + stage("Push") { |
| 100 | + if (haveChanges){ |
| 101 | + def message = "bump jenkins plugin version" |
| 102 | + shwrap(""" |
| 103 | + cd fedora-coreos-pipeline |
| 104 | + git add jenkins/controller/plugins.txt |
| 105 | + git commit -m '${message}' -m 'Job URL: ${env.BUILD_URL}' -m 'Job definition: https://github.com/coreos/fedora-coreos-pipeline/blob/main/jobs/bump-jenkins-plugins.Jenkinsfile' |
| 106 | + """) |
| 107 | + withCredentials([usernamePassword(credentialsId: botCreds, |
| 108 | + usernameVariable: 'GHUSER', |
| 109 | + passwordVariable: 'GHTOKEN')]) { |
| 110 | + shwrap(""" |
| 111 | + cd fedora-coreos-pipeline |
| 112 | + git push -f https://\${GHUSER}:\${GHTOKEN}@github.com/${repo} ${pr_branch} |
| 113 | + curl -H "Authorization: token ${GHTOKEN}" -X POST -d '{ "title": "Bump jenkins plugin version to the latest", "head": "${pr_branch}", "base": "main" }' https://api.github.com/repos/coreosbot-releng/fedora-coreos-pipeline/pulls |
| 114 | + """) |
| 115 | + } |
| 116 | + } |
| 117 | + } |
| 118 | + } catch (e) { |
| 119 | + currentBuild.result = 'FAILURE' |
| 120 | + throw e |
| 121 | + } finally { |
| 122 | + if (currentBuild.result != 'SUCCESS') { |
| 123 | + pipeutils.trySlackSend(message: "bump-lockfile #${env.BUILD_NUMBER} <${env.BUILD_URL}|:jenkins:> <${env.RUN_DISPLAY_URL}|:ocean:> [${params.STREAM}]") |
| 124 | + } |
| 125 | + } |
| 126 | + } |
| 127 | +} |
0 commit comments