From: Michael Wallner Date: Tue, 27 Aug 2024 13:30:16 +0000 (+0200) Subject: ci: fix PHP version order X-Git-Url: https://git.m6w6.name/?a=commitdiff_plain;h=b70038e827913f8dee5f5e2c148c69ac5cfa916c;p=m6w6%2Fext-http ci: fix PHP version order --- diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b990aef..9d9d284 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -48,9 +48,9 @@ jobs: make -f scripts/ci/Makefile test old-0: - name: "old-0 (8.1)" + name: "old-0 (8.2)" env: - PHP: "8.1" + PHP: "8.2" enable_debug: "yes" enable_zts: "yes" enable_iconv: "yes" @@ -86,9 +86,9 @@ jobs: make -f scripts/ci/Makefile test old-1: - name: "old-1 (8.0)" + name: "old-1 (8.1)" env: - PHP: "8.0" + PHP: "8.1" enable_debug: "yes" enable_zts: "yes" enable_iconv: "yes" @@ -124,9 +124,9 @@ jobs: make -f scripts/ci/Makefile test old-2: - name: "old-2 (8.2)" + name: "old-2 (8.0)" env: - PHP: "8.2" + PHP: "8.0" enable_debug: "yes" enable_zts: "yes" enable_iconv: "yes" diff --git a/scripts/gen_github_workflow_ci.php b/scripts/gen_github_workflow_ci.php index b79dbff..850eac2 100755 --- a/scripts/gen_github_workflow_ci.php +++ b/scripts/gen_github_workflow_ci.php @@ -21,7 +21,7 @@ $job = $gen->github([ "TEST_PHP_ARGS" => "-d error_reporting=24575" // ignore E_DEPRECATED ], "old" => [ - "PHP" => ["8.1", "8.0", "8.2"], + "PHP" => ["8.2", "8.1", "8.0"], "enable_debug" => "yes", "enable_zts" => "yes", "enable_iconv" => "yes",