-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use upload_stage_rpms to rsync to stagingyum #369
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -472,22 +472,17 @@ def rsync_debian(user, ssh_key, suite, component, deb_paths) { | |
} | ||
} | ||
|
||
def rsync_to_yum_stage(collection, target, version) { | ||
def user = 'yumrepostage' | ||
def rsync_to_yum_stage(collection, version) { | ||
def ssh_key = '/home/jenkins/workspace/staging_key/rsync_yumrepostage_key' | ||
|
||
rsync_yum(user, ssh_key, collection, target, version) | ||
} | ||
|
||
def rsync_yum(user, ssh_key, collection, target, version) { | ||
def hosts = ["web01.osuosl.theforeman.org"] | ||
|
||
for(host in hosts) { | ||
def target_path = "${user}@${host}:rsync_cache/${target}/${version}/" | ||
|
||
sh """ | ||
export RSYNC_RSH="ssh -i ${ssh_key}" | ||
/usr/bin/rsync --checksum --times --perms --recursive --links --verbose --partial --one-file-system --delete-after ${collection}/${version}/ ${target_path} | ||
""" | ||
if (!fileExists('upload_stage_rpms')) { | ||
git url: "https://github.com/theforeman/theforeman-rel-eng", poll: false | ||
} | ||
|
||
sh """ | ||
export RSYNC_RSH="ssh -i ${ssh_key}" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. How is There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. line 476 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Bleh, reading diffs is hard. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes. Blame Richmond. |
||
export VERSION=${version} | ||
export PROJECT=${collection} | ||
./upload_stage_rpms | ||
""" | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I know, this is contrary to what Ewoud asked for, but the previous step is always
build_stage_repository
which comes from the same repo. So I'd argue it's either guaranteed that the repo is already checked out (one could also argue to have a prep step that does only that, for clarity), or whatever is on disk should absolutely not be synced.