Skip to content

Commit

Permalink
finishing sorting
Browse files Browse the repository at this point in the history
  • Loading branch information
tfoote committed Sep 28, 2012
1 parent 506967d commit 6cfaaaf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/create_release_jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def doit(repo_map, package_names_by_url, distros, fqdn, jobs_graph, rosdistro, c
# We take the intersection of repo-specific targets with default
# targets.
results = {}
for short_package_name, r in repo_map['repositories'].items():
for short_package_name, r in sorted(repo_map['repositories'].items()):
if 'url' not in r:
print('"url" key missing for repository "%s"; skipping' % r)
continue
Expand Down
2 changes: 1 addition & 1 deletion src/buildfarm/release_jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ def doit(release_uri, package, distros, fqdn, job_graph, rosdistro, short_packag
jobs = [source_job] + binary_jobs
successful_jobs = []
failed_jobs = []
for job_name, config in sorted(jobs):
for job_name, config in jobs:
if commit:
if create_jenkins_job(job_name, config, jenkins_instance):
successful_jobs.append(job_name)
Expand Down

0 comments on commit 6cfaaaf

Please sign in to comment.