07ea171af9
Platform: moko-platform CI / Gate 2: Unit Tests (8.1) (push) Blocked by required conditions
Platform: moko-platform CI / Gate 2: Unit Tests (8.2) (push) Blocked by required conditions
Platform: moko-platform CI / Gate 2: Unit Tests (8.3) (push) Blocked by required conditions
Platform: moko-platform CI / Gate 3: Self-Health Check (push) Blocked by required conditions
Platform: moko-platform CI / Gate 4: Governance (push) Blocked by required conditions
Platform: moko-platform CI / Gate 5: Template Integrity (push) Blocked by required conditions
Platform: moko-platform CI / CI Summary (push) Blocked by required conditions
Generic: Repo Health / Release configuration (push) Blocked by required conditions
Generic: Repo Health / Scripts governance (push) Blocked by required conditions
Generic: Repo Health / Repository health (push) Blocked by required conditions
Generic: Repo Health / Site Health (push) Has been skipped
Generic: Repo Health / Access control (push) Successful in 1s
Platform: moko-platform CI / Gate 1: Code Quality (push) Failing after 43s
New CLI tools: - manifest_element.php — extract element/type/prefix from any platform manifest - release_create.php — create/overwrite Gitea releases with proper naming - release_package.php — build ZIP+tar.gz, SHA-256, upload assets - release_promote.php — promote releases between channels (dev→RC→stable) - version_reset_dev.php — reset platform version on dev branch after release Updated CLI tools: - version_bump.php — now writes to manifests, Dolibarr mod, composer.json (not just README) - release_cascade.php — added --version for version-aware deletion of stale releases - release_validate.php — auto-detect platform, --github-output, source dir check Workflow changes (auto-release.yml): - Draft PR to main → auto-promote highest pre-release to RC - Merged PR to main → promote RC to stable (skip rebuild when RC exists) - Removed paths filter for Go/Node/generic repo compatibility - Fixed cascade --api-base parameter bug Workflow changes (pre-release.yml): - Auto-trigger development pre-release on feature branch merge to dev - Removed paths filter Infrastructure: - RepositorySynchronizer: fixed template repo names, .mokogitea/workflows path, universal workflow cascade (Template-Generic → other templates) - bulk_sync.php: syncs universal workflows to templates before repo sync - PHPDoc added to 4 classes missing class-level docs - Version bump 09.00.00 → 09.01.00 Closes #152 #153 #154 #155 #156 #157 #158 #159 #161 #162 Authored-by: Moko Consulting Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
258 lines
8.0 KiB
PHP
258 lines
8.0 KiB
PHP
#!/usr/bin/env php
|
|
<?php
|
|
|
|
/* Copyright (C) 2026 Moko Consulting <hello@mokoconsulting.tech>
|
|
*
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*
|
|
* FILE INFORMATION
|
|
* DEFGROUP: moko-platform.CLI
|
|
* INGROUP: moko-platform
|
|
* REPO: https://git.mokoconsulting.tech/MokoConsulting/moko-platform
|
|
* PATH: /cli/release_validate.php
|
|
* BRIEF: Pre-release validation — version consistency, required files, manifest checks
|
|
*
|
|
* Usage:
|
|
* php release_validate.php --path /repo --version 04.01.00
|
|
* php release_validate.php --path /repo --version 04.01.00 --platform joomla --output-summary
|
|
*
|
|
* Options:
|
|
* --path Repository root (default: .)
|
|
* --version Expected version string (required)
|
|
* --platform joomla|dolibarr|generic (default: joomla)
|
|
* --output-summary Write markdown table to $GITHUB_STEP_SUMMARY
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
$path = '.';
|
|
$version = null;
|
|
$platform = null;
|
|
$outputSummary = false;
|
|
$githubOutput = false;
|
|
|
|
foreach ($argv as $i => $arg) {
|
|
if ($arg === '--path' && isset($argv[$i + 1])) {
|
|
$path = $argv[$i + 1];
|
|
}
|
|
if ($arg === '--version' && isset($argv[$i + 1])) {
|
|
$version = $argv[$i + 1];
|
|
}
|
|
if ($arg === '--platform' && isset($argv[$i + 1])) {
|
|
$platform = $argv[$i + 1];
|
|
}
|
|
if ($arg === '--output-summary') {
|
|
$outputSummary = true;
|
|
}
|
|
if ($arg === '--github-output') {
|
|
$githubOutput = true;
|
|
}
|
|
}
|
|
|
|
if ($version === null) {
|
|
fwrite(STDERR, "Usage: release_validate.php --path . --version XX.YY.ZZ [--platform joomla]\n");
|
|
exit(1);
|
|
}
|
|
|
|
$root = realpath($path) ?: $path;
|
|
|
|
// Auto-detect platform from manifest.xml if not specified
|
|
if ($platform === null) {
|
|
$manifestXml = "{$root}/.mokogitea/manifest.xml";
|
|
if (file_exists($manifestXml)) {
|
|
$mContent = file_get_contents($manifestXml);
|
|
if (preg_match('/<platform>([^<]+)<\/platform>/', $mContent, $pm)) {
|
|
$platform = trim($pm[1]);
|
|
}
|
|
}
|
|
// Normalize platform aliases
|
|
if (in_array($platform, ['waas-component'], true)) {
|
|
$platform = 'joomla';
|
|
}
|
|
if (in_array($platform, ['crm-module'], true)) {
|
|
$platform = 'dolibarr';
|
|
}
|
|
if ($platform === null) {
|
|
$platform = 'generic';
|
|
}
|
|
}
|
|
|
|
$pass = 0;
|
|
$fail = 0;
|
|
$warn = 0;
|
|
/** @var array<int, array{check: string, status: string, details: string}> */
|
|
$results = [];
|
|
|
|
/**
|
|
* Record a validation result.
|
|
*
|
|
* @param string $check Check name
|
|
* @param string $status PASS, FAIL, or WARN
|
|
* @param string $details Human-readable details
|
|
*/
|
|
function addResult(string $check, string $status, string $details): void
|
|
{
|
|
global $pass, $fail, $warn, $results;
|
|
$results[] = ['check' => $check, 'status' => $status, 'details' => $details];
|
|
if ($status === 'PASS') {
|
|
$pass++;
|
|
} elseif ($status === 'FAIL') {
|
|
$fail++;
|
|
} elseif ($status === 'WARN') {
|
|
$warn++;
|
|
}
|
|
}
|
|
|
|
// 0. Source directory check
|
|
$hasSource = is_dir("{$root}/src") || is_dir("{$root}/htdocs");
|
|
if ($hasSource) {
|
|
addResult('Source directory', 'PASS', 'src/ or htdocs/ found');
|
|
} else {
|
|
addResult('Source directory', 'WARN', 'No src/ or htdocs/ directory');
|
|
}
|
|
|
|
// 1. README.md exists and contains VERSION
|
|
if (!file_exists("{$root}/README.md")) {
|
|
addResult('README.md', 'FAIL', 'Not found');
|
|
} else {
|
|
$readme = file_get_contents("{$root}/README.md");
|
|
if (
|
|
preg_match('/VERSION:\s*' . preg_quote($version, '/') . '/', $readme) ||
|
|
strpos($readme, $version) !== false
|
|
) {
|
|
addResult('README.md version', 'PASS', "`{$version}` found");
|
|
} else {
|
|
addResult('README.md version', 'FAIL', "`{$version}` not found in README.md");
|
|
}
|
|
}
|
|
|
|
// 2. CHANGELOG.md exists with matching section
|
|
if (!file_exists("{$root}/CHANGELOG.md")) {
|
|
addResult('CHANGELOG.md', 'WARN', 'Not found');
|
|
} else {
|
|
$cl = file_get_contents("{$root}/CHANGELOG.md");
|
|
if (preg_match('/^##\s.*' . preg_quote($version, '/') . '/m', $cl)) {
|
|
addResult('CHANGELOG.md version', 'PASS', "Section for `{$version}` found");
|
|
} else {
|
|
addResult('CHANGELOG.md version', 'WARN', "No section header for `{$version}`");
|
|
}
|
|
}
|
|
|
|
// 3. LICENSE file exists
|
|
$licenseFound = false;
|
|
foreach (['LICENSE', 'LICENSE.md', 'LICENSE.txt', 'COPYING'] as $lf) {
|
|
if (file_exists("{$root}/{$lf}")) {
|
|
$licenseFound = true;
|
|
break;
|
|
}
|
|
}
|
|
addResult('LICENSE', $licenseFound ? 'PASS' : 'FAIL', $licenseFound ? 'Found' : 'Not found');
|
|
|
|
// 4. Platform-specific checks
|
|
if ($platform === 'joomla') {
|
|
// Find XML manifest
|
|
$manifest = null;
|
|
$searchDirs = ["{$root}/src", $root];
|
|
foreach ($searchDirs as $dir) {
|
|
if (!is_dir($dir)) {
|
|
continue;
|
|
}
|
|
foreach (glob("{$dir}/*.xml") as $xmlFile) {
|
|
$content = file_get_contents($xmlFile);
|
|
if (strpos($content, '<extension') !== false) {
|
|
$manifest = $xmlFile;
|
|
break 2;
|
|
}
|
|
}
|
|
}
|
|
if ($manifest === null) {
|
|
addResult('XML manifest', 'FAIL', 'No Joomla manifest found');
|
|
} else {
|
|
if (preg_match('/<version>([^<]+)<\/version>/', file_get_contents($manifest), $m)) {
|
|
$mVer = trim($m[1]);
|
|
if ($mVer === $version) {
|
|
addResult('Manifest version', 'PASS', "`{$mVer}` matches");
|
|
} else {
|
|
addResult('Manifest version', 'FAIL', "`{$mVer}` != `{$version}`");
|
|
}
|
|
} else {
|
|
addResult('Manifest version', 'FAIL', 'No <version> tag in manifest');
|
|
}
|
|
}
|
|
|
|
// updates.xml
|
|
if (!file_exists("{$root}/updates.xml")) {
|
|
addResult('updates.xml', 'WARN', 'Not found');
|
|
} else {
|
|
$ux = file_get_contents("{$root}/updates.xml");
|
|
if (preg_match('/<version>' . preg_quote($version, '/') . '<\/version>/', $ux)) {
|
|
addResult('updates.xml version', 'PASS', "`{$version}` found");
|
|
} else {
|
|
addResult('updates.xml version', 'FAIL', "`{$version}` not in updates.xml");
|
|
}
|
|
}
|
|
} elseif ($platform === 'dolibarr') {
|
|
$modFile = null;
|
|
foreach (['src', 'htdocs'] as $sd) {
|
|
$pattern = "{$root}/{$sd}/mod*.class.php";
|
|
$matches = glob($pattern);
|
|
if (!empty($matches)) {
|
|
$modFile = $matches[0];
|
|
break;
|
|
}
|
|
}
|
|
if ($modFile === null) {
|
|
addResult('Dolibarr mod file', 'FAIL', 'No mod*.class.php found');
|
|
} else {
|
|
$mc = file_get_contents($modFile);
|
|
if (preg_match("/\\\$this->version\s*=\s*'" . preg_quote($version, '/') . "'/", $mc)) {
|
|
addResult('Dolibarr version', 'PASS', "`{$version}` matches");
|
|
} else {
|
|
addResult('Dolibarr version', 'FAIL', "`{$version}` not found in " . basename($modFile));
|
|
}
|
|
}
|
|
}
|
|
|
|
// 5. composer.json version (if present)
|
|
if (file_exists("{$root}/composer.json")) {
|
|
$composer = json_decode(file_get_contents("{$root}/composer.json"), true);
|
|
if (isset($composer['version'])) {
|
|
if ($composer['version'] === $version) {
|
|
addResult('composer.json version', 'PASS', "`{$version}` matches");
|
|
} else {
|
|
addResult('composer.json version', 'WARN', "`{$composer['version']}` != `{$version}`");
|
|
}
|
|
}
|
|
}
|
|
|
|
// Output
|
|
$table = "| Check | Result | Details |\n|-------|--------|--------|\n";
|
|
foreach ($results as $r) {
|
|
$table .= "| {$r['check']} | {$r['status']} | {$r['details']} |\n";
|
|
}
|
|
$table .= "\n**Validation: {$pass} passed, {$fail} failed, {$warn} warnings**\n";
|
|
|
|
echo $table;
|
|
|
|
if ($outputSummary) {
|
|
$summaryFile = getenv('GITHUB_STEP_SUMMARY');
|
|
if ($summaryFile) {
|
|
file_put_contents($summaryFile, "## Pre-Release Sanity Checks ({$platform})\n\n{$table}\n", FILE_APPEND);
|
|
}
|
|
}
|
|
|
|
if ($githubOutput) {
|
|
$ghOutput = getenv('GITHUB_OUTPUT');
|
|
$lines = [
|
|
"validation_pass={$pass}",
|
|
"validation_fail={$fail}",
|
|
"validation_warn={$warn}",
|
|
"validation_platform={$platform}",
|
|
];
|
|
if ($ghOutput) {
|
|
file_put_contents($ghOutput, implode("\n", $lines) . "\n", FILE_APPEND);
|
|
}
|
|
}
|
|
|
|
exit($fail > 0 ? 1 : 0);
|