diff options
author | Daniel Kesselberg <mail@danielkesselberg.de> | 2023-09-30 00:20:21 +0200 |
---|---|---|
committer | Daniel <mail@danielkesselberg.de> | 2023-09-30 22:52:57 +0200 |
commit | 7e0ed6b636ec3622920bbce6034e41044f0b8897 (patch) | |
tree | 9b59fc739dff0eb34259383250c3f8dc7fb759ef /.github | |
parent | 5586f2d4c4d19c3f43c39a3fb3f9ca5de07aa40b (diff) | |
download | nextcloud-server-7e0ed6b636ec3622920bbce6034e41044f0b8897.tar.gz nextcloud-server-7e0ed6b636ec3622920bbce6034e41044f0b8897.zip |
ci: clear disable_functions to enable pcntl_signal
When using ini-file development then disable_functions forbids pcntl_signal by default.
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/phpunit-32bits.yml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/.github/workflows/phpunit-32bits.yml b/.github/workflows/phpunit-32bits.yml index 4ecc6251005..beafe11cdc3 100644 --- a/.github/workflows/phpunit-32bits.yml +++ b/.github/workflows/phpunit-32bits.yml @@ -48,8 +48,7 @@ jobs: coverage: none ini-file: development ini-values: - apc.enabled=on, - apc.enable_cli=on + apc.enabled=on, apc.enable_cli=on, disable_functions= # https://github.com/shivammathur/setup-php/discussions/573 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |