forked from coreos/fedora-coreos-pipeline
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This job will implement lockfile bumping for testing-devel and next-devel: coreos/fedora-coreos-tracker#293. The original plan for this functionality was to have it in config-bot: coreos/fedora-coreos-releng-automation#48 But in the end, I think it's more natural to have it as a Jenkins job given that it does a lot of the same things as the pipeline/upstream CI jobs. So that way it looks and feels just like another job that runs cosa, and we get kola artifacts, we can re-use the shared library, it's easily inspectable, we can hook it to Slack, etc...
- Loading branch information
Showing
2 changed files
with
78 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
credentials: | ||
system: | ||
domainCredentials: | ||
- credentials: | ||
- usernamePassword: | ||
scope: GLOBAL | ||
id: github-coreosbot-token | ||
username: coreosbot | ||
password: ${github-coreosbot-token/token} | ||
description: GitHub coreosbot token | ||
- string: | ||
scope: GLOBAL | ||
id: github-coreosbot-token-string | ||
secret: ${github-coreosbot-token/token} | ||
description: GitHub coreosbot token as a string |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
@Library('github.com/coreos/coreos-ci-lib@master') _ | ||
|
||
repo = "coreos/fedora-coreos-config" | ||
branches = [ | ||
"testing-devel", | ||
"next-devel" | ||
] | ||
botCreds = "github-coreosbot-token" | ||
|
||
properties([ | ||
pipelineTriggers([ | ||
// we don't need to bump lockfiles any more often than daily | ||
cron("H H * * *") | ||
]) | ||
]) | ||
|
||
cosaPod { | ||
parallel branches.collectEntries { branch -> [branch, { | ||
shwrap("mkdir ${branch}") | ||
dir(branch) { | ||
stage("Fetch") { | ||
shwrap("cosa init --branch ${branch} https://github.com/${repo}") | ||
shwrap("cosa fetch --update-lockfile") | ||
} | ||
|
||
if (shwrapRc("git -C src/config diff --exit-code") == 0) { | ||
println("No changes") | ||
return | ||
} | ||
|
||
// sanity-check only base lockfiles were changed | ||
shwrap(""" | ||
# do this separately so set -e kicks in if it fails | ||
files=\$(git -C src/config ls-files --modified --deleted) | ||
for f in \${files}; do | ||
if ! [[ \${f} =~ ^manifest-lock\\.[0-9a-z_]+\\.json ]]; then | ||
echo "Unexpected modified file \${f}" | ||
exit 1 | ||
fi | ||
done | ||
""") | ||
|
||
stage("Build") { | ||
shwrap("cosa build --strict") | ||
} | ||
|
||
fcosKola(cosaDir: ".") | ||
|
||
// OK, it passed kola: just push to the branch. In the future, we might be | ||
// fancier here; e.g. if tests fail, just open a PR, or if tests passed but a | ||
// package was added or removed. | ||
stage("Push") { | ||
shwrap("git -C src/config commit -am 'lockfiles: bump to latest'") | ||
withCredentials([usernamePassword(credentialsId: botCreds, | ||
usernameVariable: 'GHUSER', | ||
passwordVariable: 'GHTOKEN')]) { | ||
// should gracefully handle race conditions here | ||
sh("git -C src/config push https://${GHUSER}:${GHTOKEN}@github.com/${repo} ${branch}") | ||
} | ||
} | ||
} | ||
}] } | ||
} |