File tree 1 file changed +40
-0
lines changed
1 file changed +40
-0
lines changed Original file line number Diff line number Diff line change @@ -84,6 +84,26 @@ explained at the end of this document in
84
84
5 . Compile and run ` make test ` , with and without ZTS, using the right Bison and
85
85
re2c version (for PHP 7.4, minimum Bison 3.0.0 and re2c 0.13.4 are used).
86
86
87
+ For example:
88
+
89
+ ``` sh
90
+ # With ZTS
91
+ make distclean || \
92
+ ./buildconf --force \
93
+ && ./configure --enable-zts --disable-all --enable-debug --enable-opcache --enable-opcache-jit \
94
+ && make -j$( nproc) \
95
+ && make test TEST_PHP_ARGS=-j$( nproc) \
96
+ && ./sapi/cli/php -v
97
+
98
+ # Without ZTS
99
+ make distclean || \
100
+ ./buildconf --force \
101
+ && ./configure --disable-all --enable-debug --enable-opcache --enable-opcache-jit \
102
+ && make -j$( nproc) \
103
+ && make test TEST_PHP_ARGS=-j$( nproc) \
104
+ && ./sapi/cli/php -v
105
+ ```
106
+
87
107
6. Check ` ./sapi/cli/php -v` output for version matching.
88
108
89
109
7. If all is right, commit the changes to the release branch:
@@ -207,6 +227,26 @@ explained at the end of this document in
207
227
5. Compile and run ` make test` , with and without ZTS, using the right Bison and
208
228
re2c version (for PHP 7.4, minimum Bison 3.0.0 and re2c 0.13.4 are used).
209
229
230
+ For example:
231
+
232
+ ` ` ` sh
233
+ # With ZTS
234
+ make distclean || \
235
+ ./buildconf --force \
236
+ && ./configure --enable-zts --disable-all --enable-debug --enable-opcache --enable-opcache-jit \
237
+ && make -j$( nproc) \
238
+ && make test TEST_PHP_ARGS=-j$( nproc) \
239
+ && ./sapi/cli/php -v
240
+
241
+ # Without ZTS
242
+ make distclean || \
243
+ ./buildconf --force \
244
+ && ./configure --disable-all --enable-debug --enable-opcache --enable-opcache-jit \
245
+ && make -j$( nproc) \
246
+ && make test TEST_PHP_ARGS=-j$( nproc) \
247
+ && ./sapi/cli/php -v
248
+ ` ` `
249
+
210
250
6. Check ` ./sapi/cli/php -v` output for version matching.
211
251
212
252
7. Tag the repository with the version e.g. ` git tag -u YOURKEYID php-7.4.1`
You can’t perform that action at this time.
0 commit comments