-
Notifications
You must be signed in to change notification settings - Fork 181
/
Copy pathrelease.php
98 lines (75 loc) · 2.6 KB
/
release.php
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<?php
/*
* This file is part of the Symfony1 package.
*
* (c) Fabien Potencier <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/**
* Release script.
*
* Usage: php data/bin/release.php 1.3.0 stable
*
* @author Fabien Potencier <[email protected]>
*
* @version SVN: $Id$
*/
require_once __DIR__.'/../../lib/exception/sfException.class.php';
require_once __DIR__.'/../../lib/task/sfFilesystem.class.php';
require_once __DIR__.'/../../lib/util/sfFinder.class.php';
require_once __DIR__.'/../../lib/vendor/lime/lime.php';
if (!isset($argv[1])) {
throw new \Exception('You must provide version prefix.');
}
if (!isset($argv[2])) {
throw new \Exception('You must provide stability status (alpha/beta/stable).');
}
$stability = $argv[2];
$filesystem = new \sfFilesystem();
if (('beta' == $stability || 'alpha' == $stability) && count(explode('.', $argv[1])) < 2) {
$version_prefix = $argv[1];
list($result) = $filesystem->execute('svn status -u '.getcwd());
if (preg_match('/Status against revision\:\s+(\d+)\s*$/im', $result, $match)) {
$version = $match[1];
}
if (!isset($version)) {
throw new \Exception('Unable to find last SVN revision.');
}
// make a PEAR compatible version
$version = $version_prefix.'.'.$version;
} else {
$version = $argv[1];
}
echo sprintf("Releasing symfony version \"%s\".\n", $version);
// tests
list($result) = $filesystem->execute('php data/bin/symfony symfony:test');
if (0 != $result) {
throw new \Exception('Some tests failed. Release process aborted!');
}
if (is_file('package.xml')) {
$filesystem->remove(getcwd().DIRECTORY_SEPARATOR.'package.xml');
}
$filesystem->copy(getcwd().'/package.xml.tmpl', getcwd().'/package.xml');
// add class files
$finder = \sfFinder::type('file')->relative();
$xml_classes = '';
$dirs = ['lib' => 'php', 'data' => 'data'];
foreach ($dirs as $dir => $role) {
$class_files = $finder->in($dir);
foreach ($class_files as $file) {
$xml_classes .= '<file role="'.$role.'" baseinstalldir="symfony" install-as="'.$file.'" name="'.$dir.'/'.$file.'" />'."\n";
}
}
// replace tokens
$filesystem->replaceTokens(getcwd().DIRECTORY_SEPARATOR.'package.xml', '##', '##', [
'SYMFONY_VERSION' => $version,
'CURRENT_DATE' => date('Y-m-d'),
'CLASS_FILES' => $xml_classes,
'STABILITY' => $stability,
]);
list($results) = $filesystem->execute('pear package');
echo $results;
$filesystem->remove(getcwd().DIRECTORY_SEPARATOR.'package.xml');
exit(0);