~fginther/ubuntu-ci-services-itself/bsb-source-detail

« back to all changes in this revision

Viewing changes to branch-source-builder/bsbuilder/resources/v1.py

  • Committer: Chris Johnston
  • Author(s): Francis Ginther
  • Date: 2014-03-04 19:52:45 UTC
  • mfrom: (297.3.2 bsb-pass-ppa)
  • Revision ID: chris_johnston-20140304195245-nbhyk37wg2umahap
[r=Andy Doan, PS Jenkins bot] Remove hardcoded values for the series and archive from the branch source builder and allow specification of the archive (master ppa) as an environment variable. 1285820 from Francis Ginther

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
    })
30
30
 
31
31
 
32
 
def _build_source(source_packages, ppa, progress_trigger):
 
32
def _build_source(source_packages, series, ppa, archive, progress_trigger):
33
33
    params = {
34
34
        'source_packages': source_packages,
 
35
        'series': series,
35
36
        'ppa': ppa,
 
37
        'archive': archive,
36
38
        'progress_trigger': progress_trigger,
37
39
    }
38
40