File tree 5 files changed +30
-34
lines changed
5 files changed +30
-34
lines changed Original file line number Diff line number Diff line change @@ -76,40 +76,39 @@ job-test: &job-test
76
76
path : /tmp/artifacts
77
77
78
78
jobs :
79
- test-php-8.1 :
80
- << : *container_config
81
- docker :
82
- - image : cimg/php:8.1-browsers
83
- << : *job-test
84
-
85
79
test-php-8.2 :
86
80
<< : *container_config
87
81
docker :
88
82
- image : cimg/php:8.2-browsers
89
83
<< : *job-test
90
84
91
- test-php-8.1 -legacy :
85
+ test-php-8.2 -legacy :
92
86
<< : *container_config
93
87
docker :
94
- - image : cimg/php:8.1 -browsers
88
+ - image : cimg/php:8.2 -browsers
95
89
environment :
96
90
DRUPAL_VERSION : 9.5
97
91
DRUPAL_PROJECT_SHA : 9.x
98
92
<< : *job-test
99
93
100
- test-php-8.2-legacy :
94
+ test-php-8.2-next :
101
95
<< : *container_config
102
96
docker :
103
97
- image : cimg/php:8.2-browsers
104
98
environment :
105
- DRUPAL_VERSION : 9.5
106
- DRUPAL_PROJECT_SHA : 9.x
99
+ DRUPAL_VERSION : 10@beta
107
100
<< : *job-test
108
101
109
- test-php-8.2-next :
102
+ test-php-8.3 :
110
103
<< : *container_config
111
104
docker :
112
- - image : cimg/php:8.2-browsers
105
+ - image : cimg/php:8.3-browsers
106
+ << : *job-test
107
+
108
+ test-php-8.3-next :
109
+ << : *container_config
110
+ docker :
111
+ - image : cimg/php:8.3-browsers
113
112
environment :
114
113
DRUPAL_VERSION : 10@beta
115
114
<< : *job-test
@@ -134,31 +133,29 @@ workflows:
134
133
version : 2
135
134
commit :
136
135
jobs :
137
- - test-php-8.1 :
136
+ - test-php-8.2 :
138
137
filters :
139
138
tags :
140
139
only : /.*/
141
- - test-php-8.2 :
140
+ - test-php-8.2-legacy :
142
141
filters :
143
142
tags :
144
143
only : /.*/
145
- - test-php-8.1-legacy :
144
+ - test-php-8.2-next :
146
145
filters :
147
146
tags :
148
147
only : /.*/
149
- - test-php-8.2-legacy :
148
+ - test-php-8.3 :
150
149
filters :
151
150
tags :
152
151
only : /.*/
153
- - test-php-8.2 -next :
152
+ - test-php-8.3 -next :
154
153
filters :
155
154
tags :
156
155
only : /.*/
157
156
- deploy :
158
157
requires :
159
- - test-php-8.1
160
158
- test-php-8.2
161
- - test-php-8.1-legacy
162
159
- test-php-8.2-legacy
163
160
- test-php-8.2-next
164
161
filters :
Original file line number Diff line number Diff line change @@ -15,21 +15,11 @@ jobs:
15
15
strategy :
16
16
matrix :
17
17
include :
18
- - name : test-php-8.1
19
- php-version : 8.1
20
- drupal-version : stable
21
-
22
18
- name : test-php-8.2
23
19
php-version : 8.2
24
20
drupal-version : stable
25
21
drupal-version-alias : stable
26
22
27
- - name : test-php-8.1-legacy
28
- php-version : 8.1
29
- drupal-version : 9.5
30
- drupal-project-sha : 9.x
31
- drupal-version-alias : legacy
32
-
33
23
- name : test-php-8.2-legacy
34
24
php-version : 8.2
35
25
drupal-version : 9.5
41
31
drupal-version : 10@beta
42
32
drupal-version-alias : next
43
33
34
+ - name : test-php-8.3
35
+ php-version : 8.3
36
+ drupal-version : stable
37
+ drupal-version-alias : stable
38
+
39
+ - name : test-php-8.3-next
40
+ php-version : 8.3
41
+ drupal-version : 10@beta
42
+ drupal-version-alias : next
43
+
44
44
name : ${{ matrix.name }}
45
45
46
46
env :
Original file line number Diff line number Diff line change @@ -32,8 +32,7 @@ to [drupal.org](https://drupal.org).
32
32
## Features
33
33
34
34
- Turnkey CI configuration with artifacts and test results support.
35
- - PHP version matrix for [ 8.2] ( https://www.php.net/supported-versions.php )
36
- and [ 8.1] ( https://www.php.net/supported-versions.php ) .
35
+ - PHP version matrix for [ 8.2] ( https://www.php.net/supported-versions.php ) .
37
36
- Drupal version matrix: ` stable ` , ` next ` and ` last EOL ` version.
38
37
- CI providers:
39
38
- [ GitHub Actions] ( .github/workflows/test.yml )
Original file line number Diff line number Diff line change 17
17
"source" : " https://git.drupalcode.org/project/your_extension"
18
18
},
19
19
"require" : {
20
- "php" : " >=8.1 "
20
+ "php" : " >=8.2 "
21
21
},
22
22
"require-dev" : {
23
23
"drupal/pathauto" : " ~1.0"
Original file line number Diff line number Diff line change 16
16
<arg value =" sp" />
17
17
<arg name =" parallel" value =" 75" />
18
18
<!-- Lint code against platform version specified in composer.json key "config.platform.php". -->
19
- <config name =" testVersion" value =" 8.1 " />
19
+ <config name =" testVersion" value =" 8.2 " />
20
20
21
21
<!-- Exclude CircleCI config files. -->
22
22
<exclude-pattern >circle\.yml</exclude-pattern >
You can’t perform that action at this time.
0 commit comments