Skip to content

Commit

Permalink
Merge pull request #56 from core23/xdebug
Browse files Browse the repository at this point in the history
Show version in ci pipeline
  • Loading branch information
core23 committed Feb 7, 2024
2 parents 745ddbe + 27266d1 commit e76c086
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/continuous-integration.yml
Expand Up @@ -35,3 +35,6 @@ jobs:

- name: "Size"
run: "docker images ghcr.io/core23/jenkins-php-agent:${{ matrix.php-version }}-${{ matrix.base-image }} --format \"{{.Repository}}:{{.Tag}} -> {{.Size}}\""

- name: "Version"
run: "docker run --rm --entrypoint=php ghcr.io/core23/jenkins-php-agent:${{ matrix.php-version }}-${{ matrix.base-image }} --version"
2 changes: 1 addition & 1 deletion README.md
@@ -1,7 +1,7 @@
Jenkins Agents
==============

[![Continuous Integration](https://github.com/core23/jenkins-docker-agents/workflows/Continuous%20Integration/badge.svg)](https://github.com/core23/jenkins-docker-agents/actions)
[![Continuous Integration](https://github.com/core23/jenkins-docker-agents/actions/workflows/continuous-integration.yml/badge.svg)](https://github.com/core23/jenkins-docker-agents/actions/workflows/continuous-integration.yml)

PHP Agents
----------
Expand Down
2 changes: 2 additions & 0 deletions php/alpine/8.1/Dockerfile
Expand Up @@ -54,6 +54,8 @@ RUN apk add --no-cache -X http://dl-cdn.alpinelinux.org/alpine/edge/testing \
php81-zip \
php81-zlib

RUN ln -sf /usr/bin/php81 /usr/bin/php

COPY php.ini /etc/php81/conf.d/custom.ini

# Get Composer
Expand Down
2 changes: 2 additions & 0 deletions php/alpine/8.1/php.ini
@@ -1,3 +1,5 @@
zend_extension="xdebug.so"

[PHP]
file_uploads = On
upload_max_filesize = 256M
Expand Down
2 changes: 2 additions & 0 deletions php/alpine/8.2/php.ini
@@ -1,3 +1,5 @@
zend_extension="xdebug.so"

[PHP]
file_uploads = On
upload_max_filesize = 256M
Expand Down
2 changes: 2 additions & 0 deletions php/alpine/8.3/php.ini
@@ -1,3 +1,5 @@
zend_extension="xdebug.so"

[PHP]
file_uploads = On
upload_max_filesize = 256M
Expand Down

0 comments on commit e76c086

Please sign in to comment.