summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2023-08-29 13:31:49 +0200
committerJoas Schilling <coding@schilljs.com>2023-08-30 09:23:16 +0200
commit206efa431a4d1257fc2fc99f81dd90bc0ed4c68b (patch)
tree2062e67294dadac7096d30aa919c9a55ea6bb009 /.github
parent02a98a19a7537607ace2e7088519dc64fcf0ca2c (diff)
fix(CI): Clear disable_functions so pcntl_* are there
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/integration-pgsql.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/integration-pgsql.yml b/.github/workflows/integration-pgsql.yml
index 8bc86ed63..3744ce7a6 100644
--- a/.github/workflows/integration-pgsql.yml
+++ b/.github/workflows/integration-pgsql.yml
@@ -108,8 +108,8 @@ jobs:
extensions: apcu, bz2, ctype, curl, dom, fileinfo, gd, iconv, intl, json, libxml, mbstring, openssl, pcntl, posix, session, simplexml, xmlreader, xmlwriter, zip, zlib, pgsql, pdo_pgsql
coverage: none
ini-file: development
- ini-values:
- apc.enable_cli=on
+ # Temporary workaround for missing pcntl_* in PHP 8.3: ini-values: apc.enable_cli=on
+ ini-values: apc.enable_cli=on, disable_functions=
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}