mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
e11b55d219
* PHP-8.1: Use per-branch matrix for windows nightly
114 lines
3.6 KiB
PHP
114 lines
3.6 KiB
PHP
<?php
|
|
|
|
const BRANCHES = ['master', 'PHP-8.2', 'PHP-8.1', 'PHP-8.0'];
|
|
|
|
function get_branch_commit_cache_file_path(): string {
|
|
return dirname(__DIR__) . '/branch-commit-cache.json';
|
|
}
|
|
|
|
function get_branch_matrix(array $branches) {
|
|
$result = array_map(function ($branch) {
|
|
$branch_key = strtoupper(str_replace('.', '', $branch));
|
|
return [
|
|
'name' => $branch_key,
|
|
'ref' => $branch,
|
|
];
|
|
}, $branches);
|
|
|
|
return $result;
|
|
}
|
|
|
|
function get_branches() {
|
|
$branch_commit_cache_file = get_branch_commit_cache_file_path();
|
|
$branch_commit_map = [];
|
|
if (file_exists($branch_commit_cache_file)) {
|
|
$branch_commit_map = json_decode(file_get_contents($branch_commit_cache_file), JSON_THROW_ON_ERROR);
|
|
}
|
|
|
|
$changed_branches = [];
|
|
foreach (BRANCHES as $branch) {
|
|
$previous_commit_hash = $branch_commit_map[$branch] ?? null;
|
|
$current_commit_hash = trim(shell_exec('git rev-parse origin/' . $branch));
|
|
|
|
if ($previous_commit_hash !== $current_commit_hash) {
|
|
$changed_branches[] = $branch;
|
|
}
|
|
|
|
$branch_commit_map[$branch] = $current_commit_hash;
|
|
}
|
|
|
|
file_put_contents($branch_commit_cache_file, json_encode($branch_commit_map));
|
|
|
|
return get_branch_matrix($changed_branches);
|
|
}
|
|
|
|
function get_matrix_include(array $branches) {
|
|
$jobs = [];
|
|
foreach ($branches as $branch) {
|
|
$jobs[] = [
|
|
'name' => '_ASAN_UBSAN',
|
|
'branch' => $branch,
|
|
'debug' => true,
|
|
'zts' => true,
|
|
'configuration_parameters' => "CFLAGS='-fsanitize=undefined,address -DZEND_TRACK_ARENA_ALLOC' LDFLAGS='-fsanitize=undefined,address'",
|
|
'run_tests_parameters' => '--asan',
|
|
'test_function_jit' => false,
|
|
];
|
|
if ($branch['ref'] !== 'PHP-8.0') {
|
|
$jobs[] = [
|
|
'name' => '_REPEAT',
|
|
'branch' => $branch,
|
|
'debug' => true,
|
|
'zts' => false,
|
|
'run_tests_parameters' => '--repeat 2',
|
|
'timeout_minutes' => 360,
|
|
'test_function_jit' => true,
|
|
];
|
|
$jobs[] = [
|
|
'name' => '_VARIATION',
|
|
'branch' => $branch,
|
|
'debug' => true,
|
|
'zts' => true,
|
|
'configuration_parameters' => "CFLAGS='-DZEND_RC_DEBUG=1 -DPROFITABILITY_CHECKS=0 -DZEND_VERIFY_FUNC_INFO=1'",
|
|
'timeout_minutes' => 360,
|
|
'test_function_jit' => true,
|
|
];
|
|
}
|
|
}
|
|
return $jobs;
|
|
}
|
|
|
|
function get_windows_matrix_include(array $branches) {
|
|
$jobs = [];
|
|
foreach ($branches as $branch) {
|
|
$jobs[] = [
|
|
'branch' => $branch,
|
|
'x64' => true,
|
|
'zts' => true,
|
|
'opcache' => true,
|
|
];
|
|
$jobs[] = [
|
|
'branch' => $branch,
|
|
'x64' => false,
|
|
'zts' => false,
|
|
'opcache' => false,
|
|
];
|
|
}
|
|
return $jobs;
|
|
}
|
|
|
|
$trigger = $argv[1] ?? 'schedule';
|
|
$attempt = (int) ($argv[2] ?? 1);
|
|
$discard_cache = ($trigger === 'schedule' && $attempt !== 1) || $trigger === 'workflow_dispatch';
|
|
if ($discard_cache) {
|
|
@unlink(get_branch_commit_cache_file_path());
|
|
}
|
|
|
|
$branches = get_branches();
|
|
$matrix_include = get_matrix_include($branches);
|
|
$windows_matrix_include = get_windows_matrix_include($branches);
|
|
|
|
echo '::set-output name=branches::' . json_encode($branches, JSON_UNESCAPED_SLASHES) . "\n";
|
|
echo '::set-output name=matrix-include::' . json_encode($matrix_include, JSON_UNESCAPED_SLASHES) . "\n";
|
|
echo '::set-output name=windows-matrix-include::' . json_encode($windows_matrix_include, JSON_UNESCAPED_SLASHES) . "\n";
|