summaryrefslogtreecommitdiff
path: root/sync.profile
diff options
context:
space:
mode:
authorSergio Ahumada <sergio.ahumada@digia.com>2013-05-24 22:12:32 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-05-26 06:04:55 +0200
commitba481b692530b86aac870e013e06535038f0073f (patch)
treeed3715ba60c37343a90359a3aac70aeec8ebb70c /sync.profile
parent4fbf696c1445bf438b9cff08760ccf594f527ad8 (diff)
downloadqtdoc-ba481b692530b86aac870e013e06535038f0073f.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: Ia7a118539e3e5265cd0bdca7800e48cb6fc534d0 Reviewed-by: Iikka Eklund <iikka.eklund@digia.com>
Diffstat (limited to 'sync.profile')
-rw-r--r--sync.profile15
1 files changed, 8 insertions, 7 deletions
diff --git a/sync.profile b/sync.profile
index 6d3be16a..04e798ac 100644
--- a/sync.profile
+++ b/sync.profile
@@ -3,13 +3,14 @@
# 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",
- "qtscript" => "refs/heads/stable",
- "qtsvg" => "refs/heads/stable",
- "qtxmlpatterns" => "refs/heads/stable",
- "qttools" => "refs/heads/stable",
- "qtdeclarative" => "refs/heads/stable",
- "qtjsbackend" => "refs/heads/stable",
+ "qtbase" => "",
+ "qtscript" => "",
+ "qtsvg" => "",
+ "qtxmlpatterns" => "",
+ "qttools" => "",
+ "qtdeclarative" => "",
+ "qtjsbackend" => "",
);