14de7dbe19
Generic: Repo Health / Site Health (push) Has been skipped
Generic: Repo Health / Access control (push) Successful in 1s
Generic: Repo Health / Release configuration (push) Successful in 4s
Generic: Repo Health / Scripts governance (push) Successful in 4s
Generic: Repo Health / Repository health (push) Failing after 5s
Platform: moko-platform CI / Gate 2: Unit Tests (8.1) (pull_request) Blocked by required conditions
Platform: moko-platform CI / Gate 2: Unit Tests (8.2) (pull_request) Blocked by required conditions
Platform: moko-platform CI / Gate 2: Unit Tests (8.3) (pull_request) Blocked by required conditions
Platform: moko-platform CI / Gate 3: Self-Health Check (pull_request) Blocked by required conditions
Platform: moko-platform CI / Gate 4: Governance (pull_request) Blocked by required conditions
Universal: PR Check / Branch Policy (pull_request) Failing after 1s
Generic: Repo Health / Site Health (pull_request) Has been skipped
Generic: Repo Health / Access control (pull_request) Successful in 1s
Universal: Secret Scanning / Gitleaks Secret Scan (pull_request) Successful in 5s
Universal: PR Check / Validate PR (pull_request) Successful in 4s
Platform: moko-platform CI / Gate 1: Code Quality (pull_request) Failing after 10s
Generic: Repo Health / Release configuration (pull_request) Successful in 4s
Generic: Repo Health / Repository health (pull_request) Failing after 4s
Generic: Repo Health / Scripts governance (pull_request) Successful in 5s
Platform: moko-platform CI / Gate 5: Template Integrity (pull_request) Has been skipped
Platform: moko-platform CI / CI Summary (pull_request) Has been cancelled
- release_verify.php: Post-release artifact verification (ZIP integrity, manifest version, SHA256 vs updates.xml, disallowed files check) - release_validate.php: Pre-release sanity checks (version consistency across README, CHANGELOG, manifest, updates.xml, composer.json) - release_body_update.php: Update Gitea release body with changelog extract and checksums table via API - dev_branch_reset.php: Delete and recreate dev branch from main via Gitea API Resolves: #56, #60, #62, #64 Authored-by: Moko Consulting Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
179 lines
5.7 KiB
PHP
179 lines
5.7 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 = 'joomla';
|
|
$outputSummary = 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 ($version === null) {
|
|
fwrite(STDERR, "Usage: release_validate.php --path . --version XX.YY.ZZ [--platform joomla]\n");
|
|
exit(1);
|
|
}
|
|
|
|
$root = realpath($path) ?: $path;
|
|
$pass = 0;
|
|
$fail = 0;
|
|
$warn = 0;
|
|
$results = [];
|
|
|
|
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++;
|
|
}
|
|
|
|
// 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 Validation\n\n{$table}\n", FILE_APPEND);
|
|
}
|
|
}
|
|
|
|
exit($fail > 0 ? 1 : 0);
|