-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
98fe0ab
commit 7fe382b
Showing
10 changed files
with
351 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
{ | ||
"require": { | ||
"php": ">=7.4", | ||
"php": ">=8.1", | ||
"symfony/console": "^6.3", | ||
"symfony/process": "^6.3" | ||
"symfony/process": "^6.3", | ||
"panlatent/cron-expression-descriptor": "^1" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^9.5" | ||
"phpunit/phpunit": "^9.6" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,7 +34,7 @@ function write_file($path, $contents) | |
} | ||
$dirname = dirname($path); | ||
if (!file_exists($dirname)) { | ||
error("Directory $dirname does not exist"); | ||
mkdir($dirname, 0775, true); | ||
} | ||
$contents = trim($contents) . "\n"; | ||
file_put_contents($path, $contents); | ||
|
@@ -67,12 +67,43 @@ function supported_modules($cmsMajor) | |
'account' => explode('/', $ghrepo)[0], | ||
'repo' => explode('/', $ghrepo)[1], | ||
'cloneUrl' => "[email protected]:$ghrepo.git", | ||
'branch' => max($module['branches'] ?: [-1]) | ||
]; | ||
} | ||
return $modules; | ||
} | ||
|
||
/** | ||
* Hardcoded list of additional repositories to standardise (e.g. silverstripe/gha-*) | ||
* | ||
* Repositories in this list should only have a single supported major version | ||
* This will only be included if the $cmsMajor is the CURRENT_CMS_MAJOR | ||
*/ | ||
function extra_repositories() | ||
{ | ||
$modules = []; | ||
// iterating to page 7 should be enough to get all the repos well into the future | ||
for ($i = 0; $i < 7; $i++) { | ||
$json = github_api("https://api.github.com/orgs/silverstripe/repos?per_page=100&page=$i"); | ||
foreach ($json as $repo) { | ||
if ($repo['archived']) { | ||
continue; | ||
} | ||
$ghrepo = $repo['full_name']; | ||
// exclude non gha-* repos | ||
if (strpos($ghrepo, '/gha-') === false) { | ||
continue; | ||
} | ||
$modules[] = [ | ||
'ghrepo' => $ghrepo, | ||
'account' => explode('/', $ghrepo)[0], | ||
'repo' => explode('/', $ghrepo)[1], | ||
'cloneUrl' => "[email protected]:$ghrepo.git", | ||
]; | ||
} | ||
} | ||
return $modules; | ||
} | ||
|
||
/** | ||
* Returns a list of all scripts files to run against a particular cms major version | ||
*/ | ||
|
@@ -169,6 +200,8 @@ function github_token() | |
*/ | ||
function github_api($url, $data = []) | ||
{ | ||
// silverstripe-themes has a kind of weird redirect only for api requests | ||
$url = str_replace('/silverstripe-themes/silverstripe-simple', '/silverstripe/silverstripe-simple', $url); | ||
$token = github_token(); | ||
$jsonStr = empty($data) ? '' : json_encode($data, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE); | ||
$ch = curl_init($url); | ||
|
@@ -265,12 +298,38 @@ function branch_to_checkout($branches, $currentBranch, $currentBranchCmsMajor, $ | |
return (string) $branchToCheckout; | ||
} | ||
|
||
/** | ||
* Uses composer.json to workout the current branch cms major version | ||
* | ||
* If composer.json does not exist then it's assumed to be CURRENT_CMS_MAJOR | ||
*/ | ||
function current_branch_cms_major( | ||
// this param is only used for unit testing | ||
string $composerJson = '' | ||
) { | ||
// read __composer.json of the current branch | ||
$contents = $composerJson ?: read_file('composer.json'); | ||
global $MODULE_DIR; | ||
|
||
if ($composerJson) { | ||
$contents = $composerJson; | ||
} elseif (check_file_exists('composer.json')) { | ||
$contents = read_file('composer.json'); | ||
} else { | ||
return CURRENT_CMS_MAJOR; | ||
} | ||
|
||
// special logic for developer-docs | ||
if (strpos($MODULE_DIR, '/developer-docs') !== false) { | ||
$currentBranch = cmd('git rev-parse --abbrev-ref HEAD', $MODULE_DIR); | ||
if (!preg_match('#^(pulls/)?([0-9]+)(\.[0-9]+)?(/|$)#', $currentBranch, $matches)) { | ||
error("Could work out current major for developer-docs from branch $currentBranch"); | ||
} | ||
return $matches[2]; | ||
} | ||
|
||
// special logic for silverstripe-themes/silverstripe-simple | ||
if (strpos($MODULE_DIR, '/silverstripe-simple') !== false) { | ||
return CURRENT_CMS_MAJOR; | ||
} | ||
|
||
$json = json_decode($contents); | ||
if (is_null($json)) { | ||
|
@@ -287,7 +346,15 @@ function current_branch_cms_major( | |
} | ||
if (!$version) { | ||
$version = preg_replace('#[^0-9\.]#', '', $json->require->{'silverstripe/assets'} ?? ''); | ||
$matchedOnBranchThreeLess = true; | ||
if ($version) { | ||
$matchedOnBranchThreeLess = true; | ||
} | ||
} | ||
if (!$version) { | ||
$version = preg_replace('#[^0-9\.]#', '', $json->require->{'cwp/starter-theme'} ?? ''); | ||
if ($version) { | ||
$version += 1; | ||
} | ||
} | ||
$cmsMajor = ''; | ||
if (preg_match('#^([0-9]+)+\.?[0-9]*$#', $version, $matches)) { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<?php | ||
|
||
// run on a day of the month up to the 28th | ||
$runOnDay = predictable_random_int(27, 1); | ||
// run at a random hour of the day | ||
$runOnHour = predictable_random_int(23); | ||
// run at a random minute of the hour rounded to 5 minutes | ||
$runOnMinute = predictable_random_int(11) * 5; | ||
|
||
$cron = "$runOnMinute $runOnHour $runOnDay * *"; | ||
$humanCron = human_cron($cron); | ||
$account = module_account(); | ||
|
||
$content = <<<EOT | ||
name: Keepalive | ||
on: | ||
# $humanCron | ||
schedule: | ||
- cron: '$cron' | ||
workflow_dispatch: | ||
jobs: | ||
keepalive: | ||
name: Keepalive | ||
# Only run cron on the $account account | ||
if: (github.event_name == 'schedule' && github.repository_owner == '$account') || (github.event_name != 'schedule') | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Keepalive | ||
uses: silverstripe/gha-keepalive@v1 | ||
EOT; | ||
|
||
write_file_even_if_exists('.github/workflows/keepalive.yml', $content); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
<?php | ||
|
||
// run on a random day of the week | ||
$runOnDay = predictable_random_int(6); | ||
// run at a random hour of the day | ||
$runOnHour = predictable_random_int(23); | ||
// run at a random minute of the hour rounded to 5 minutes | ||
$runOnMinute = predictable_random_int(11) * 5; | ||
|
||
// If there's a CI workflow, offset mergeups from the CI run by 3 days | ||
if (check_file_exists('.github/workflows/dispatch-ci.yml')) { | ||
$ci = read_file('.github/workflows/dispatch-ci.yml'); | ||
preg_match("#- cron: '(.+?) (.+?) (.+?) (.+?) (.+?)'#", $ci, $matches); | ||
[$_, $minute, $hour, $day, $month, $dayOfWeek] = $matches; | ||
if ($dayOfWeek !== '*') { | ||
$days = explode(',', $dayOfWeek); | ||
$runOnDay = ($days[count($days) - 1] + 3) % 7; | ||
} | ||
if ($hour !== '*') { | ||
$hours = explode(',', $hour); | ||
$runOnHour = $hours[0]; | ||
} | ||
if ($minute !== '*') { | ||
$runOnMinute = $minute; | ||
} | ||
} | ||
|
||
$cron = "$runOnMinute $runOnHour * * $runOnDay"; | ||
$humanCron = human_cron($cron); | ||
$account = module_account(); | ||
|
||
$content = <<<EOT | ||
name: Merge-up | ||
on: | ||
# $humanCron | ||
schedule: | ||
- cron: '$cron' | ||
workflow_dispatch: | ||
jobs: | ||
merge-up: | ||
name: Merge-up | ||
# Only run cron on the $account account | ||
if: (github.event_name == 'schedule' && github.repository_owner == '$account') || (github.event_name != 'schedule') | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Merge-up | ||
uses: silverstripe/gha-merge-up@v1 | ||
EOT; | ||
|
||
// rename any existing misnamed merge-ups.yml to merge-up.yml | ||
if (check_file_exists('.github/workflows/merge-ups.yml')) { | ||
rename_file_if_exists('.github/workflows/merge-ups.yml', '.github/workflows/merge-up.yml'); | ||
} | ||
|
||
if (!module_is_recipe()) { | ||
write_file_even_if_exists('.github/workflows/merge-up.yml', $content); | ||
} |
Oops, something went wrong.