X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=scripts%2Fgen_github_workflow_ci.php;h=78d770a0fc33ea4e43c8165c32c768f6326b7e26;hb=fbbe06aeb0fcccc9a3c08d7a7ce44cbf48bca83d;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..78d770a 100755 --- a/scripts/gen_github_workflow_ci.php +++ b/scripts/gen_github_workflow_ci.php @@ -11,24 +11,24 @@ jobs: github([ "old-matrix" => [ - "PHP" => ["7.0", "7.1", "7.2", "7.3", "7.4"], + "PHP" => ["7.0", "7.1", "7.2", "7.3", "7.4", "8.0", "8.1"], "enable_debug" => "yes", "enable_maintainer_zts" => "yes", "enable_json" => "yes", -], -"master" => [ +], +"next" => [ "PHP" => ["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"); } @@ -46,7 +46,7 @@ foreach ($job as $id => $env) { } ?> PQ_DSN: "postgres:///runner" - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v2 with: