aboutsummaryrefslogtreecommitdiff
path: root/bootstrap.py
diff options
context:
space:
mode:
authorMarkus Lehtonen <markus.lehtonen@linux.intel.com>2014-07-18 16:05:35 +0300
committerMarkus Lehtonen <markus.lehtonen@linux.intel.com>2014-07-21 11:55:32 +0300
commitff090c1cf946e3df67795ce3c1437ec6246dbf37 (patch)
tree70bea9abc96078849986070154b3556493f9cf77 /bootstrap.py
parent2c413c87e674e63bbd02ffaaacce22d5370bf82e (diff)
Add pristine-tar branches
Use mangled branch names ('pristine_tar' instead of 'pristine-tar') to not confuse pristine-tar tool. Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
Diffstat (limited to 'bootstrap.py')
-rwxr-xr-xbootstrap.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/bootstrap.py b/bootstrap.py
index 9d86b79..2f3ded5 100755
--- a/bootstrap.py
+++ b/bootstrap.py
@@ -36,16 +36,17 @@ from tests.component.rpm import RepoManifest
LOG = logging.getLogger(os.path.basename(sys.argv[0]))
+# Use mangled pristine-tar branch names in order to not confuse pristine-tar
TEST_PKGS = {'gbp-test-native': {'build_branches': ['master'],
'export_branches': ['master']},
'gbp-test-native2': {'build_branches': ['master'],
'export_branches': ['master']},
'gbp-test': {'build_branches': ['master', 'fork'],
'export_branches': ['master', 'upstream',
- 'pq/master']},
+ 'pq/master', 'pristine_tar']},
'gbp-test2': {'build_branches': ['master'],
'export_branches': ['master', 'master-orphan',
- 'upstream']}}
+ 'upstream', 'pristine_tar']}}
class GitError(Exception):