forked from Sylius/Sylius
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRoboFile.php
More file actions
131 lines (103 loc) · 3.96 KB
/
RoboFile.php
File metadata and controls
131 lines (103 loc) · 3.96 KB
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<?php
/*
* This file is part of the Sylius package.
*
* (c) Sylius Sp. z o.o.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
use Robo\Exception\TaskException;
use Robo\Result;
use Robo\Symfony\ConsoleIO;
use Robo\Tasks;
class RoboFile extends Tasks
{
private const ROOT_DIR = __DIR__;
private const SUCCESS = 'success';
private const FAILED = 'failed';
private const YES = 'yes';
public function ciPackages(ConsoleIO $io, string $packagesJson): ?Result
{
$packages = json_decode($packagesJson, true);
$result = [];
$failed = false;
foreach ($packages as $package) {
$this->startGroup($package);
try {
$processResult = $this->processPackagePipeline($package);
$result[$package] = $processResult->wasSuccessful() ? self::SUCCESS : self::FAILED;
} catch (TaskException) {
$result[$package] = self::FAILED;
}
$this->endGroup();
}
foreach ($result as $packageName => $value) {
printf('%s %s%s', $value === self::SUCCESS ? '✅' : '❌', $packageName, \PHP_EOL);
$failed = $failed || $value === self::FAILED;
}
exit($failed ? 1 : 0);
}
/**
* @throws TaskException
*/
private function processPackagePipeline(string $package): Result
{
$symfonyVersion = getenv('SYMFONY_VERSION');
$unstable = getenv('UNSTABLE');
$packagePath = sprintf('%s/src/Sylius/%s', self::ROOT_DIR, $package);
$composerJsonPath = sprintf('%s/composer.json', $packagePath);
if (false === $symfonyVersion) {
throw new \RuntimeException('SYMFONY_VERSION environment variable is not set.');
}
if (!file_exists($composerJsonPath)) {
throw new \RuntimeException('composer.json file does not exist.');
}
$task = $this->taskExecStack()
->dir($packagePath)
->stopOnFail()
->exec(sprintf('composer config extra.symfony.require "%s"', $symfonyVersion))
;
if (self::YES === $unstable) {
$task->exec('composer config minimum-stability dev');
$task->exec('composer config prefer-stable true');
}
$task
->exec('composer update --no-scripts --no-interaction')
->exec('composer validate --ansi --strict')
;
if (in_array($package, ['Bundle/AdminBundle', 'Bundle/ApiBundle', 'Bundle/CoreBundle'])) {
$this->createTestAssets(sprintf('%s/tests/Application', $packagePath));
$this->createTestAssets(sprintf('%s/test', $packagePath)); // Remove after all test apps have been moved
}
if ('Bundle/ApiBundle' === $package) {
$task->exec('tests/Application/bin/console doctrine:schema:update --force');
}
if (file_exists(sprintf('%s/phpunit.xml', $packagePath)) || file_exists(sprintf('%s/phpunit.xml.dist', $packagePath))) {
$task->exec('vendor/bin/phpunit --colors=always');
}
return $task->run();
}
private function createTestAssets(string $testAppDirectory): void
{
$adminBuildDir = sprintf('%s/public/build/admin', $testAppDirectory);
$shopBuildDir = sprintf('%s/public/build/shop', $testAppDirectory);
if (!file_exists($adminBuildDir)) {
mkdir($adminBuildDir, 0777, true);
file_put_contents(sprintf('%s/manifest.json', $adminBuildDir), '{}');
}
if (!file_exists($shopBuildDir)) {
mkdir($shopBuildDir, 0777, true);
file_put_contents(sprintf('%s/manifest.json', $shopBuildDir), '{}');
}
}
private function startGroup(string $groupName): void
{
printf("::group::%s\n", $groupName);
}
private function endGroup(): void
{
echo "\n::endgroup::\n\n";
}
}