|
8 | 8 |
|
9 | 9 | jobs: |
10 | 10 | old-matrix-0: |
11 | | - name: php-7.0-debug-zts |
| 11 | + name: php-7.4-debug-zts |
12 | 12 | env: |
13 | | - PHP: "7.0" |
| 13 | + PHP: "7.4" |
14 | 14 | enable_debug: "yes" |
15 | 15 | enable_maintainer_zts: "yes" |
16 | 16 | enable_session: "yes" |
|
36 | 36 | make -f scripts/ci/Makefile test |
37 | 37 |
|
38 | 38 | old-matrix-1: |
39 | | - name: php-7.1-debug-zts |
| 39 | + name: php-8.0-debug-nozts |
40 | 40 | env: |
41 | | - PHP: "7.1" |
| 41 | + PHP: "8.0" |
42 | 42 | enable_debug: "yes" |
43 | 43 | enable_maintainer_zts: "yes" |
44 | 44 | enable_session: "yes" |
|
64 | 64 | make -f scripts/ci/Makefile test |
65 | 65 |
|
66 | 66 | old-matrix-2: |
67 | | - name: php-7.2-debug-zts |
| 67 | + name: php-8.1-debug-nozts |
68 | 68 | env: |
69 | | - PHP: "7.2" |
| 69 | + PHP: "8.1" |
70 | 70 | enable_debug: "yes" |
71 | 71 | enable_maintainer_zts: "yes" |
72 | 72 | enable_session: "yes" |
|
92 | 92 | make -f scripts/ci/Makefile test |
93 | 93 |
|
94 | 94 | old-matrix-3: |
95 | | - name: php-7.3-debug-zts |
| 95 | + name: php-8.2-debug-nozts |
96 | 96 | env: |
97 | | - PHP: "7.3" |
98 | | - enable_debug: "yes" |
99 | | - enable_maintainer_zts: "yes" |
100 | | - enable_session: "yes" |
101 | | - runs-on: ubuntu-20.04 |
102 | | - steps: |
103 | | - - uses: actions/checkout@v2 |
104 | | - with: |
105 | | - submodules: true |
106 | | - - name: Install |
107 | | - run: | |
108 | | - sudo apt-get install -y \ |
109 | | - php-cli \ |
110 | | - php-pear \ |
111 | | - re2c |
112 | | - - name: Prepare |
113 | | - run: | |
114 | | - make -f scripts/ci/Makefile php || make -f scripts/ci/Makefile clean php |
115 | | - - name: Build |
116 | | - run: | |
117 | | - make -f scripts/ci/Makefile ext PECL=msgpack |
118 | | - - name: Test |
119 | | - run: | |
120 | | - make -f scripts/ci/Makefile test |
121 | | -
|
122 | | - old-matrix-4: |
123 | | - name: php-7.4-debug-zts |
124 | | - env: |
125 | | - PHP: "7.4" |
| 97 | + PHP: "8.2" |
126 | 98 | enable_debug: "yes" |
127 | 99 | enable_maintainer_zts: "yes" |
128 | 100 | enable_session: "yes" |
@@ -176,90 +148,6 @@ jobs: |
176 | 148 | run: | |
177 | 149 | make -f scripts/ci/Makefile test |
178 | 150 |
|
179 | | - cur-matrix-0: |
180 | | - name: php-8.0-debug-zts |
181 | | - env: |
182 | | - PHP: "8.0" |
183 | | - enable_debug: "yes" |
184 | | - enable_zts: "yes" |
185 | | - enable_session: "yes" |
186 | | - runs-on: ubuntu-20.04 |
187 | | - steps: |
188 | | - - uses: actions/checkout@v2 |
189 | | - with: |
190 | | - submodules: true |
191 | | - - name: Install |
192 | | - run: | |
193 | | - sudo apt-get install -y \ |
194 | | - php-cli \ |
195 | | - php-pear \ |
196 | | - re2c |
197 | | - - name: Prepare |
198 | | - run: | |
199 | | - make -f scripts/ci/Makefile php || make -f scripts/ci/Makefile clean php |
200 | | - - name: Build |
201 | | - run: | |
202 | | - make -f scripts/ci/Makefile ext PECL=msgpack |
203 | | - - name: Test |
204 | | - run: | |
205 | | - make -f scripts/ci/Makefile test |
206 | | -
|
207 | | - cur-matrix-1: |
208 | | - name: php-8.1-debug-zts |
209 | | - env: |
210 | | - PHP: "8.1" |
211 | | - enable_debug: "yes" |
212 | | - enable_zts: "yes" |
213 | | - enable_session: "yes" |
214 | | - runs-on: ubuntu-20.04 |
215 | | - steps: |
216 | | - - uses: actions/checkout@v2 |
217 | | - with: |
218 | | - submodules: true |
219 | | - - name: Install |
220 | | - run: | |
221 | | - sudo apt-get install -y \ |
222 | | - php-cli \ |
223 | | - php-pear \ |
224 | | - re2c |
225 | | - - name: Prepare |
226 | | - run: | |
227 | | - make -f scripts/ci/Makefile php || make -f scripts/ci/Makefile clean php |
228 | | - - name: Build |
229 | | - run: | |
230 | | - make -f scripts/ci/Makefile ext PECL=msgpack |
231 | | - - name: Test |
232 | | - run: | |
233 | | - make -f scripts/ci/Makefile test |
234 | | -
|
235 | | - cur-matrix-2: |
236 | | - name: php-8.2-debug-zts |
237 | | - env: |
238 | | - PHP: "8.2" |
239 | | - enable_debug: "yes" |
240 | | - enable_zts: "yes" |
241 | | - enable_session: "yes" |
242 | | - runs-on: ubuntu-20.04 |
243 | | - steps: |
244 | | - - uses: actions/checkout@v2 |
245 | | - with: |
246 | | - submodules: true |
247 | | - - name: Install |
248 | | - run: | |
249 | | - sudo apt-get install -y \ |
250 | | - php-cli \ |
251 | | - php-pear \ |
252 | | - re2c |
253 | | - - name: Prepare |
254 | | - run: | |
255 | | - make -f scripts/ci/Makefile php || make -f scripts/ci/Makefile clean php |
256 | | - - name: Build |
257 | | - run: | |
258 | | - make -f scripts/ci/Makefile ext PECL=msgpack |
259 | | - - name: Test |
260 | | - run: | |
261 | | - make -f scripts/ci/Makefile test |
262 | | -
|
263 | 151 | cur-none-0: |
264 | 152 | name: php-8.3-nodebug-nozts |
265 | 153 | env: |
|
0 commit comments