X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=scripts%2Fgen_github_workflow_ci.php;h=7c2e009087c9f59e1f04810dc8c2f83e8cc82792;hb=50610560f4a6f6fb8e53160cc0daf581839e99ed;hp=4b95237006c5541c5ca6a35edbcc8315867801b3;hpb=1e0808bcea8651c2ffbb798cd5e151f87bef429e;p=m6w6%2Fext-pq diff --git a/scripts/gen_github_workflow_ci.php b/scripts/gen_github_workflow_ci.php index 4b95237..7c2e009 100755 --- a/scripts/gen_github_workflow_ci.php +++ b/scripts/gen_github_workflow_ci.php @@ -18,17 +18,17 @@ $job = $gen->github([ "enable_debug" => "yes", "enable_maintainer_zts" => "yes", "enable_json" => "yes", -], -"master" => [ - "PHP" => ["master"], +], +"next" => [ + "PHP" => ["8.1", "master"], "enable_debug" => "yes", "enable_zts" => "yes", -], +], "cur-dbg-zts" => [ "PHP" => $cur, "enable_debug", "enable_zts", -], +], "cur-cov" => [ "CFLAGS" => "-O0 -g --coverage", "CXXFLAGS" => "-O0 -g --coverage", @@ -36,7 +36,7 @@ $job = $gen->github([ ]]); foreach ($job as $id => $env) { printf(" %s:\n", $id); - printf(" name: %s\n", $id); + printf(" name: \"%s (%s)\"\n", $id, $env["PHP"]); if ($env["PHP"] == "master") { printf(" continue-on-error: true\n"); }