Skip to content

Commit e703cfc

Browse files
committed
chore: add apcu to dev docker
1 parent 461b1ae commit e703cfc

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/nightly_unit_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
uses: "shivammathur/setup-php@v2"
5555
with:
5656
php-version: ${{env.PHP_VERSION}}
57-
extensions: pdo_mysql, mbstring, exif, pcntl, bcmath, sockets, gettext
57+
extensions: pdo_mysql, mbstring, exif, pcntl, bcmath, sockets, gettext, apcu
5858
- name: Install dependencies
5959
uses: "ramsey/composer-install@v3"
6060
env:

.github/workflows/pull_request_unit_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
uses: "shivammathur/setup-php@v2"
5858
with:
5959
php-version: ${{env.PHP_VERSION}}
60-
extensions: pdo_mysql, mbstring, exif, pcntl, bcmath, sockets, gettext
60+
extensions: pdo_mysql, mbstring, exif, pcntl, bcmath, sockets, gettext, apcu
6161
- name: Install dependencies
6262
uses: "ramsey/composer-install@v3"
6363
env:

.github/workflows/push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
uses: "shivammathur/setup-php@v2"
5454
with:
5555
php-version: ${{env.PHP_VERSION}}
56-
extensions: pdo_mysql, mbstring, exif, pcntl, bcmath, sockets, gettext
56+
extensions: pdo_mysql, mbstring, exif, pcntl, bcmath, sockets, gettext, apcu
5757
- name: Install dependencies
5858
uses: "ramsey/composer-install@v3"
5959
env:

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ RUN apt-get update && apt-get install -y \
3333

3434
RUN apt clean && rm -rf /var/lib/apt/lists/*
3535

36-
RUN docker-php-ext-install pdo_mysql mbstring exif pcntl bcmath sockets gettext
36+
RUN docker-php-ext-install pdo_mysql mbstring exif pcntl bcmath sockets gettext apcu
3737
# XDEBUG
3838
RUN yes | pecl install ${XDEBUG_VERSION}
3939
COPY docker-compose/php/docker-php-ext-xdebug.ini $PHP_DIR/conf.d/docker-php-ext-xdebug.ini

0 commit comments

Comments
 (0)