Skip to content

Commit 2282d52

Browse files
committed
[php] update nightly actions
Signed-off-by: Kang Huaishuai <khs1994@khs1994.com>
1 parent aeeb202 commit 2282d52

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

dockerfile/php/.github/workflows/php_nightly.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -234,5 +234,6 @@ jobs:
234234
args: --file=nightly/${{ steps.build.outputs.type }}/Dockerfile
235235
- name: Upload result to GitHub Code Scanning
236236
uses: github/codeql-action/upload-sarif@v3
237+
continue-on-error: true
237238
with:
238239
sarif_file: snyk.sarif

dockerfile/php/nightly/cli/Dockerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,7 @@ RUN --mount=type=bind,from=php:alpine,source=/usr/local/bin,target=/opt/bin,rw \
397397
&& mkdir -p /usr/src/php/ext \
398398
&& touch /usr/src/php/.docker-extracted \
399399
&& mv /tmp/igbinary-master /usr/src/php/ext/igbinary \
400-
&& docker-php-ext-configure igbinary --enable-igbinary \
400+
&& docker-php-ext-configure igbinary \
401401
&& docker-php-ext-install igbinary \
402402
&& apk add --no-cache --virtual .pecl_build_deps $PECL_BUILD_DEPS $PHPIZE_DEPS \
403403
&& apk add --no-cache --virtual .pecl_run_deps $PECL_RUN_DEPS \
@@ -422,7 +422,6 @@ RUN --mount=type=bind,from=php:alpine,source=/usr/local/bin,target=/opt/bin,rw \
422422
redis \
423423
igbinary \
424424
memcached \
425-
xdebug \
426425
&& apk del --no-network .pecl_build_deps \
427426
&& rm -rf /tmp/* \
428427
&& rm -rf /root/.pie \

dockerfile/php/nightly/fpm/Dockerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,7 @@ RUN --mount=type=bind,from=php:alpine,source=/usr/local/bin,target=/opt/bin,rw \
409409
&& mkdir -p /usr/src/php/ext \
410410
&& touch /usr/src/php/.docker-extracted \
411411
&& mv /tmp/igbinary-master /usr/src/php/ext/igbinary \
412-
&& docker-php-ext-configure igbinary --enable-igbinary \
412+
&& docker-php-ext-configure igbinary \
413413
&& docker-php-ext-install igbinary \
414414
&& apk add --no-cache --virtual .pecl_build_deps $PECL_BUILD_DEPS $PHPIZE_DEPS \
415415
&& apk add --no-cache --virtual .pecl_run_deps $PECL_RUN_DEPS \
@@ -434,7 +434,6 @@ RUN --mount=type=bind,from=php:alpine,source=/usr/local/bin,target=/opt/bin,rw \
434434
redis \
435435
igbinary \
436436
memcached \
437-
xdebug \
438437
&& apk del --no-network .pecl_build_deps \
439438
&& rm -rf /tmp/* \
440439
&& rm -rf /root/.pie \

0 commit comments

Comments
 (0)