-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
211 additions
and
4 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,19 @@ | ||
def status_copr_links(repo) { | ||
def build_urls = [] | ||
if(fileExists('copr_build_urls')) { | ||
build_urls = sh(returnStdout: true, script: "cat copr_build_urls", label: 'get Copr build URLs').trim().split() | ||
} | ||
|
||
for (String build_id: build_urls) { | ||
githubNotify( | ||
credentialsId: 'github-login', | ||
account: 'theforeman', | ||
repo: repo, | ||
sha: "${ghprbActualCommit}", | ||
context: "copr/${build_package}", | ||
description: "Copr build", | ||
status: build_status, | ||
targetUrl: build_url | ||
) | ||
} | ||
} |
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
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
170 changes: 170 additions & 0 deletions
170
theforeman.org/pipelines/test/rpm_copr_packaging.groovy
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,170 @@ | ||
def packages_to_build | ||
def packages = [:] | ||
def VERCMP_NEWER = 12 | ||
def VERCMP_OLDER = 11 | ||
def VERCMP_EQUAL = 0 | ||
|
||
pipeline { | ||
agent { label 'rpmbuild' } | ||
|
||
options { | ||
timestamps() | ||
timeout(time: 4, unit: 'HOURS') | ||
ansiColor('xterm') | ||
buildDiscarder(logRotator(daysToKeepStr: '7')) | ||
} | ||
|
||
stages { | ||
stage('Clone Packaging') { | ||
steps { | ||
|
||
deleteDir() | ||
ghprb_git_checkout() | ||
setup_obal() | ||
|
||
} | ||
} | ||
|
||
stage('Find Packages to Build') { | ||
steps { | ||
|
||
script { | ||
packages_to_build = find_changed_packages("origin/${ghprbTargetBranch}") | ||
|
||
update_build_description_from_packages(packages_to_build) | ||
} | ||
|
||
} | ||
} | ||
|
||
stage('Lint Spec') { | ||
when { | ||
expression { packages_to_build } | ||
} | ||
steps { | ||
|
||
script { | ||
for(int i = 0; i < packages_to_build.size(); i++) { | ||
def index = i | ||
packages[packages_to_build[index]] = { | ||
obal(action: "lint", packages: packages_to_build[index]) | ||
} | ||
} | ||
|
||
parallel packages | ||
} | ||
} | ||
} | ||
|
||
stage("Verify version and release"){ | ||
when { | ||
expression { packages_to_build } | ||
expression { ghprbTargetBranch == 'rpm/develop'} | ||
} | ||
steps { | ||
script { | ||
|
||
for(int i = 0; i < packages_to_build.size(); i++) { | ||
package_name = packages_to_build[i] | ||
spec_pattern = "packages/**/${package_name}.spec" | ||
|
||
old_spec_path = find_deleted_files("origin/${env.ghprbTargetBranch}", spec_pattern) | ||
if (! old_spec_path) { | ||
old_spec_path = find_changed_files("origin/${env.ghprbTargetBranch}", spec_pattern) | ||
} | ||
|
||
|
||
if (old_spec_path) { | ||
new_spec_path = find_added_or_changed_files("origin/${env.ghprbTargetBranch}", spec_pattern) | ||
if (old_spec_path != new_spec_path) { | ||
continue | ||
} | ||
|
||
sh(script: "git checkout origin/${env.ghprbTargetBranch}", label: "git checkout target_branch") | ||
old_version = query_rpmspec(old_spec_path, '%{VERSION}') | ||
old_release = query_rpmspec(old_spec_path, '%{RELEASE}') | ||
|
||
sh(script: "git checkout -", label: "git checkout source_branch") | ||
new_version = query_rpmspec(new_spec_path, '%{VERSION}') | ||
new_release = query_rpmspec(new_spec_path, '%{RELEASE}') | ||
|
||
compare_version = sh( | ||
script: "rpmdev-vercmp ${old_version} ${new_version}", | ||
returnStatus: true, | ||
label: "rpmdev-vercmp" | ||
) | ||
|
||
compare_release = sh( | ||
script: "rpmdev-vercmp ${old_release} ${new_release}", | ||
returnStatus: true, | ||
label: "rpmdev-vercmp" | ||
) | ||
|
||
compare_new_to_one = sh( | ||
script: "rpmdev-vercmp 1 ${new_release}", | ||
returnStatus: true, | ||
label: "rpmdev-vercmp" | ||
) | ||
|
||
if (compare_version != VERCMP_EQUAL && (compare_new_to_one == VERCMP_OLDER || compare_new_to_one == VERCMP_EQUAL)) { | ||
echo "New version and release is reset to 1 for ${package_name}" | ||
} else if (compare_version != VERCMP_EQUAL && compare_new_to_one == VERCMP_NEWER) { | ||
// new version, but release was not reset | ||
sh """ | ||
echo 'Version updated but release was not reset back to 1 for ${package_name}"' | ||
exit 1 | ||
""" | ||
} else if (compare_version == VERCMP_EQUAL && compare_release == VERCMP_NEWER) { | ||
echo "Version remained the same and release is reset to 1 for ${package_name}" | ||
} else { | ||
sh """ | ||
echo 'Version or release needs updating for ${package_name}"' | ||
exit 1 | ||
""" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
|
||
stage('Scratch Build Packages') { | ||
when { | ||
expression { packages_to_build } | ||
} | ||
steps { | ||
|
||
withCredentials([file(credentialsId: 'theforeman-bot-copr', variable: 'copr_config')]) { | ||
obal( | ||
action: "scratch", | ||
extraVars: [ | ||
'build_package_build_system': 'copr', | ||
'build_package_download_rpms': 'True', | ||
'build_package_archive_build_ids': 'True', | ||
'build_package_copr_config': copr_config, | ||
], | ||
packages: packages_to_build | ||
) | ||
} | ||
|
||
} | ||
} | ||
|
||
stage('Repoclosure') { | ||
when { | ||
expression { packages_to_build } | ||
} | ||
steps { | ||
|
||
obal(action: "repoclosure", packages: packages_to_build) | ||
|
||
} | ||
} | ||
} | ||
|
||
post { | ||
always { | ||
status_copr_links(ghprbGhRepository.split('/')[1]) | ||
} | ||
} | ||
} |
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