Skip to content

Commit af54fd9

Browse files
committedOct 3, 2024
Add PHP 8.4 to CI
1 parent de8757f commit af54fd9

File tree

3 files changed

+24
-14
lines changed

3 files changed

+24
-14
lines changed
 

‎.azure-pipelines.yml

+16-6
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ trigger:
22
batch: true
33
branches:
44
include:
5-
- xdebug_3_2
5+
- xdebug_3_3
66
- master
77

88
jobs:
@@ -12,30 +12,40 @@ jobs:
1212
phpVersion: 'branch'
1313
phpBranch: 'master'
1414
configurationParameters: '--enable-debug --disable-zts'
15+
- template: .azure/macos/job.yml
16+
parameters:
17+
configurationName: 'OSX_PHP_84'
18+
phpVersion: '8.4.0RC1'
19+
configurationParameters: '--enable-debug --disable-zts'
20+
- template: .azure/macos/job.yml
21+
parameters:
22+
configurationName: 'OSX_PHP_84_ZTS'
23+
phpVersion: '8.4.0RC1'
24+
configurationParameters: '--enable-debug --enable-zts'
1525
- template: .azure/macos/job.yml
1626
parameters:
1727
configurationName: 'OSX_PHP_83'
18-
phpVersion: '8.3.0'
28+
phpVersion: '8.3.12'
1929
configurationParameters: '--enable-debug --disable-zts'
2030
- template: .azure/macos/job.yml
2131
parameters:
2232
configurationName: 'OSX_PHP_83_ZTS'
23-
phpVersion: '8.3.0'
33+
phpVersion: '8.3.12'
2434
configurationParameters: '--enable-debug --enable-zts'
2535
- template: .azure/macos/job.yml
2636
parameters:
2737
configurationName: 'OSX_PHP_82'
28-
phpVersion: '8.2.13'
38+
phpVersion: '8.2.24'
2939
configurationParameters: '--enable-debug --disable-zts'
3040
- template: .azure/macos/job.yml
3141
parameters:
3242
configurationName: 'OSX_PHP_82_ZTS'
33-
phpVersion: '8.2.13'
43+
phpVersion: '8.2.24'
3444
configurationParameters: '--enable-debug --enable-zts'
3545
- template: .azure/macos/job.yml
3646
parameters:
3747
configurationName: 'OSX_PHP_81'
38-
phpVersion: '8.1.26'
48+
phpVersion: '8.1.30'
3949
configurationParameters: '--enable-debug --disable-zts'
4050
- template: .azure/macos/job.yml
4151
parameters:

‎.circleci/config.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ commands:
2828
jobs:
2929
"PHP 8 3 without opcache":
3030
docker:
31-
- image: cimg/php:8.3.0
31+
- image: cimg/php:8.3.12
3232
auth:
3333
username: $DOCKERHUB_USER
3434
password: $DOCKERHUB_PW
@@ -45,7 +45,7 @@ jobs:
4545

4646
"PHP 8 3 with opcache":
4747
docker:
48-
- image: cimg/php:8.3.0
48+
- image: cimg/php:8.3.12
4949
auth:
5050
username: $DOCKERHUB_USER
5151
password: $DOCKERHUB_PW
@@ -62,7 +62,7 @@ jobs:
6262

6363
"PHP 8 2 without opcache":
6464
docker:
65-
- image: cimg/php:8.2.13
65+
- image: cimg/php:8.2.24
6666
auth:
6767
username: $DOCKERHUB_USER
6868
password: $DOCKERHUB_PW
@@ -79,7 +79,7 @@ jobs:
7979

8080
"PHP 8 2 with opcache":
8181
docker:
82-
- image: cimg/php:8.2.13
82+
- image: cimg/php:8.2.24
8383
auth:
8484
username: $DOCKERHUB_USER
8585
password: $DOCKERHUB_PW
@@ -96,7 +96,7 @@ jobs:
9696

9797
"PHP 8 1 without opcache":
9898
docker:
99-
- image: cimg/php:8.1.26
99+
- image: cimg/php:8.1.30
100100
auth:
101101
username: $DOCKERHUB_USER
102102
password: $DOCKERHUB_PW
@@ -113,7 +113,7 @@ jobs:
113113

114114
"PHP 8 1 with opcache":
115115
docker:
116-
- image: cimg/php:8.1.26
116+
- image: cimg/php:8.1.30
117117
auth:
118118
username: $DOCKERHUB_USER
119119
password: $DOCKERHUB_PW

‎.github/workflows/tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
php: [8.0, 8.1, 8.2, 8.3]
20+
php: [8.0, 8.1, 8.2, 8.3, 8.4]
2121
use-opcache: [true, false]
2222
experimental: [false]
2323
steps:
@@ -67,7 +67,7 @@ jobs:
6767
strategy:
6868
fail-fast: false
6969
matrix:
70-
php: ["8.0", "8.1", "8.2", "8.3"]
70+
php: ["8.0", "8.1", "8.2", "8.3", "8.4"]
7171
arch: [x64]
7272
ts: [nts, ts]
7373
experimental: [false]

0 commit comments

Comments
 (0)
Please sign in to comment.