aboutsummaryrefslogtreecommitdiffstats
path: root/build/sami-all.conf.php
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2014-11-12 21:43:56 +0100
committerAndreas Fischer <bantu@phpbb.com>2014-11-12 21:43:56 +0100
commit01034785213435e7d90523f626694f3a9c71fb79 (patch)
treeec35045fe2e815a20bc28fd323e325e3b3dca920 /build/sami-all.conf.php
parent09ad1d529ef76358eeb25be38884de61a410d066 (diff)
parentb55d744e775d548f451384422d9954309a2bc4b5 (diff)
downloadforums-01034785213435e7d90523f626694f3a9c71fb79.tar
forums-01034785213435e7d90523f626694f3a9c71fb79.tar.gz
forums-01034785213435e7d90523f626694f3a9c71fb79.tar.bz2
forums-01034785213435e7d90523f626694f3a9c71fb79.tar.xz
forums-01034785213435e7d90523f626694f3a9c71fb79.zip
Merge pull request #3142 from bantu/ticket/13331
[ticket/13331] Use docs target for this branch, add docs-all for all branches * bantu/ticket/13331: [ticket/13331] Use docs target for this branch, add docs-all for dev branches. Conflicts: build/build.xml build/sami-checkout.conf.php
Diffstat (limited to 'build/sami-all.conf.php')
-rw-r--r--build/sami-all.conf.php30
1 files changed, 30 insertions, 0 deletions
diff --git a/build/sami-all.conf.php b/build/sami-all.conf.php
new file mode 100644
index 0000000000..68350fee8f
--- /dev/null
+++ b/build/sami-all.conf.php
@@ -0,0 +1,30 @@
+<?php
+/**
+*
+* This file is part of the phpBB Forum Software package.
+*
+* @copyright (c) phpBB Limited <https://www.phpbb.com>
+* @license GNU General Public License, version 2 (GPL-2.0)
+*
+* For full copyright and license information, please see
+* the docs/CREDITS.txt file.
+*
+*/
+
+require __DIR__ . '/sami-checkout.conf.php';
+
+$config['versions'] = Sami\Version\GitVersionCollection::create(__DIR__ . '/../')
+ /*
+ This would be nice, but currently causes various problems that need
+ debugging.
+ ->addFromTags('release-3.0.*')
+ ->add('develop-olympus', '3.0-next (olympus)')
+ ->addFromTags('release-3.1.*')
+ ->add('develop-ascraeus', '3.1-next (ascraeus)')
+ ->add('develop')
+ */
+ ->add('develop-olympus')
+ ->add('develop-ascraeus')
+;
+
+return new Sami\Sami($iterator, $config);