Skip to content

Commit

Permalink
ci: fix PHP version order
Browse files Browse the repository at this point in the history
  • Loading branch information
m6w6 committed Aug 27, 2024
1 parent 3159eb8 commit b70038e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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"
Expand Down Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion scripts/gen_github_workflow_ci.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"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",
Expand Down

0 comments on commit b70038e

Please sign in to comment.