X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=scripts%2Fgen_github_workflow_ci.php;h=c23f23ec9598fb1a98f10829f7b2eec991b2b4ab;hp=f36cf5f3a411f2a0466a0d8d6b4cc025c2978ad8;hb=75db5c418cc509a5ff7528b49349706d35aff931;hpb=54f4f026b7379f02786b4f074f4d248c4b3e1ebc diff --git a/scripts/gen_github_workflow_ci.php b/scripts/gen_github_workflow_ci.php index f36cf5f..c23f23e 100755 --- a/scripts/gen_github_workflow_ci.php +++ b/scripts/gen_github_workflow_ci.php @@ -13,14 +13,14 @@ jobs: $gen = include __DIR__ . "/ci/gen-matrix.php"; $cur = "8.0"; $job = $gen->github([ -"master" => [ +"next" => [ // most useful for all additional versions except current - "PHP" => ["master"], + "PHP" => ["8.1", "master"], "enable_debug" => "yes", "enable_zts" => "yes", "enable_iconv" => "yes", "TEST_PHP_ARGS" => "-d error_reporting=24575" // ignore E_DEPRECATED -], +], "cur-none" => [ // everything disabled for current "PHP" => $cur, @@ -30,14 +30,14 @@ $job = $gen->github([ "with_http_libcurl_dir" => "no", "with_http_libevent_dir" => "no", "with_http_libbrotli_dir" => "no", -], +], "cur-dbg-zts" => [ // everything enabled for current, switching debug/zts "PHP" => $cur, "enable_debug", "enable_zts", "enable_iconv" => "yes", -], +], "cur-cov" => [ // once everything enabled for current, with coverage "CFLAGS" => "-O0 -g --coverage", @@ -53,7 +53,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"); }