Skip to content

Commit d4016af

Browse files
committed
fix: error at CI with PHP 8.3
Signed-off-by: Vitor Mattos <1079143+vitormattos@users.noreply.github.com>
1 parent 9d9e19c commit d4016af

4 files changed

Lines changed: 8 additions & 0 deletions

File tree

.github/workflows/behat-mariadb.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,8 @@ jobs:
109109
extensions: bz2, ctype, curl, dom, fileinfo, gd, iconv, intl, json, libxml, mbstring, openssl, pcntl, posix, session, simplexml, xmlreader, xmlwriter, zip, zlib, mysql, pdo_mysql
110110
coverage: none
111111
ini-file: development
112+
# Temporary workaround for missing pcntl_* in PHP 8.3
113+
ini-values: disable_functions=
112114
env:
113115
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
114116

.github/workflows/behat-mysql.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,8 @@ jobs:
114114
extensions: bz2, ctype, curl, dom, fileinfo, gd, iconv, intl, json, libxml, mbstring, openssl, pcntl, posix, session, simplexml, xmlreader, xmlwriter, zip, zlib, sqlite, pdo_sqlite
115115
coverage: none
116116
ini-file: development
117+
# Temporary workaround for missing pcntl_* in PHP 8.3
118+
ini-values: disable_functions=
117119
env:
118120
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
119121

.github/workflows/behat-pgsql.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,8 @@ jobs:
113113
extensions: bz2, ctype, curl, dom, fileinfo, gd, iconv, intl, json, libxml, mbstring, openssl, pcntl, posix, session, simplexml, xmlreader, xmlwriter, zip, zlib, pgsql, pdo_pgsql
114114
coverage: none
115115
ini-file: development
116+
# Temporary workaround for missing pcntl_* in PHP 8.3
117+
ini-values: disable_functions=
116118
env:
117119
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
118120

.github/workflows/behat-sqlite.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,8 @@ jobs:
104104
extensions: bz2, ctype, curl, dom, fileinfo, gd, iconv, intl, json, libxml, mbstring, openssl, pcntl, posix, session, simplexml, xmlreader, xmlwriter, zip, zlib, sqlite, pdo_sqlite
105105
coverage: none
106106
ini-file: development
107+
# Temporary workaround for missing pcntl_* in PHP 8.3
108+
ini-values: disable_functions=
107109
env:
108110
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
109111

0 commit comments

Comments
 (0)