Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ jobs:
with:
timeout_minutes: 120
retry_wait_seconds: 30
max_attempts: 5
max_attempts: 13
command: (echo "${{ needs.supported-arch-matrix.outputs.arch }}" | jq -r '.[]') | xargs -I % ./build-php.sh $(echo "${{ matrix.image }}" | tr '-' ' ') %
- run: cat ./docker-image/image.tags | xargs -I % docker inspect --format='%={{.Id}}:{{index .Config.Env 7}}' %
- run: docker save "${DOCKER_IMAGE}" | gzip -9 > ./docker-image/image.tar
Expand Down
3 changes: 1 addition & 2 deletions Dockerfile-nts-alpine
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,7 @@ RUN EXTENSION_DIR=`php-config --extension-dir 2>/dev/null` && \
$PHPIZE_DEPS \
## Install PECL
&& wget -q pear.php.net/go-pear.phar && php go-pear.phar \
&& install-php-extensions pcntl pgsql pdo pdo_pgsql bcmath zip gmp iconv opcache intl sockets \
&& (install-php-extensions random || true) \
&& install-php-extensions pcntl pgsql pdo pdo_pgsql bcmath zip gmp iconv opcache intl sockets random \
&& (pecl install eio || pecl install eio-beta) \
&& docker-php-ext-enable eio \
&& pecl install event \
Expand Down
3 changes: 1 addition & 2 deletions Dockerfile-nts-debian
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,7 @@ RUN EXTENSION_DIR=`php-config --extension-dir 2>/dev/null` && \
wget \
gdb \
$PHPIZE_DEPS \
&& docker-php-ext-install -j$(nproc) pcntl pgsql pdo pdo_pgsql bcmath zip gmp iconv intl sockets \
&& (docker-php-ext-install -j$(nproc) random || true) \
&& docker-php-ext-install -j$(nproc) pcntl pgsql pdo pdo_pgsql bcmath zip gmp iconv intl sockets random \
&& (pecl install eio || pecl install eio-beta) \
&& docker-php-ext-enable eio \
&& pecl install event \
Expand Down
3 changes: 1 addition & 2 deletions Dockerfile-zts-alpine
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,7 @@ RUN EXTENSION_DIR=`php-config --extension-dir 2>/dev/null` && \
$PHPIZE_DEPS \
## Install PECL
&& wget -q pear.php.net/go-pear.phar && php go-pear.phar \
&& install-php-extensions pcntl pgsql pdo pdo_pgsql bcmath zip gmp iconv opcache intl sockets \
&& (install-php-extensions random || true) \
&& install-php-extensions pcntl pgsql pdo pdo_pgsql bcmath zip gmp iconv opcache intl sockets random \
&& pecl install parallel || pecl install parallel-1.1.4 \
&& docker-php-ext-enable parallel \
&& (pecl install eio || pecl install eio-beta) \
Expand Down
3 changes: 1 addition & 2 deletions Dockerfile-zts-debian
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,7 @@ RUN EXTENSION_DIR=`php-config --extension-dir 2>/dev/null` && \
wget \
gdb \
$PHPIZE_DEPS \
&& docker-php-ext-install -j$(nproc) pcntl pgsql pdo pdo_pgsql bcmath zip gmp iconv intl sockets \
&& (docker-php-ext-install -j$(nproc) random || true) \
&& docker-php-ext-install -j$(nproc) pcntl pgsql pdo pdo_pgsql bcmath zip gmp iconv intl sockets random \
&& pecl install parallel || pecl install parallel-1.1.4 \
&& docker-php-ext-enable parallel \
&& (pecl install eio || pecl install eio-beta) \
Expand Down
2 changes: 1 addition & 1 deletion test/container/test_php_ext.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,4 +81,4 @@ def test_zip_is_loaded(host):
def test_zip_is_loaded(host):
output = host.run('php -r "exit(function_exists(\'mt_rand\') ? 0 : 255);"')
assert output.rc == 0
# assert 'random' in host.run('php -m').stdout
assert 'random' in host.run('php -m').stdout
Loading