aboutsummaryrefslogtreecommitdiffstats
path: root/build/sami-all.conf.php
blob: 68350fee8fd829da24323df625659f483472da90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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);