summaryrefslogtreecommitdiff
path: root/sync.profile
diff options
context:
space:
mode:
authorSergio Ahumada <sahumada@blackberry.com>2014-05-08 12:49:26 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-05-13 18:22:44 +0200
commit91f886b4591a68e07ad10fc21dbb5e746c507b59 (patch)
tree3c57e03e0d415eced049b9db8d2b82f0a8c6fdd0 /sync.profile
parentc416ada9bebed82c9859882da14078222354c0d4 (diff)
downloadqtenginio-91f886b4591a68e07ad10fc21dbb5e746c507b59.tar.gz
sync.profile: Point dependencies to an empty string
This means that we are going to use the same branch name for the dependencies as the branch of the repository under test. If we are testing the 'stable' branch, all dependencies will point to the 'stable' branch as well. Change-Id: I254a65207d37600be0157d8f53a45d59e55533a0 Reviewed-by: Jędrzej Nowacki <jedrzej.nowacki@digia.com> Reviewed-by: Frederik Gladhorn <frederik.gladhorn@digia.com>
Diffstat (limited to 'sync.profile')
-rw-r--r--sync.profile7
1 files changed, 4 insertions, 3 deletions
diff --git a/sync.profile b/sync.profile
index 7f05b34..8e2728b 100644
--- a/sync.profile
+++ b/sync.profile
@@ -8,10 +8,11 @@
# Each of the module version specifiers can take one of the following values:
# - A specific Git revision.
# - any git symbolic ref resolvable from the module's repository (e.g. "refs/heads/master" to track master branch)
+# - an empty string to use the same branch under test (dependencies will become "refs/heads/master" if we are in the master branch)
#
%dependencies = (
- "qtbase" => "refs/heads/stable",
- "qtdeclarative" => "refs/heads/stable",
- "qtxmlpatterns" => "refs/heads/stable",
+ "qtbase" => "",
+ "qtdeclarative" => "",
+ "qtxmlpatterns" => "",
);