Merge pull request #8 from nupplaphil/phpunit9
Switch to PHPUnit 9 & remove php7.1/7.2 images
This commit is contained in:
commit
a0b1ea2c7c
|
@ -1,20 +0,0 @@
|
||||||
FROM debian:jessie
|
|
||||||
|
|
||||||
# install the PHP extensions we need
|
|
||||||
# see https://friendi.ca/resources/requirements/
|
|
||||||
RUN set -ex; \
|
|
||||||
apt-get update; \
|
|
||||||
apt-get install -y wget gnupg2 libzip2 apt-transport-https lsb-release ca-certificates; \
|
|
||||||
wget -O /etc/apt/trusted.gpg.d/php.gpg https://packages.sury.org/php/apt.gpg; \
|
|
||||||
echo "deb https://packages.sury.org/php/ $(lsb_release -sc) main" > /etc/apt/sources.list.d/php.list; \
|
|
||||||
apt-get update; \
|
|
||||||
apt-get install -y php7.1-gd git curl openssl \
|
|
||||||
php7.1-cli php7.1-curl php7.1-mcrypt php7.1-mysql wget make \
|
|
||||||
php7.1-redis php7.1-memcached php7.1-memcache php7.1-json \
|
|
||||||
php7.1-apcu php7.1-xdebug php7.1-xml php7.1-zip php7.1-dev php7.1-mbstring \
|
|
||||||
; \
|
|
||||||
rm -rf /tmp/* /var/tmp/* /var/lib/apt/lists/*;
|
|
||||||
|
|
||||||
RUN phpenmod curl pdo pdo_mysql xml gd zip opcache mbstring posix ctype json iconv pcntl openssl
|
|
||||||
RUN phpdismod xdebug
|
|
||||||
ADD php.ini /etc/php/7.1/cli/conf.d/friendica.ini
|
|
|
@ -1,10 +0,0 @@
|
||||||
memory_limit = 768M
|
|
||||||
phar.readonly = 0 ; only for building phar files on CI - should be disabled on production environments
|
|
||||||
; Opcache
|
|
||||||
opcache.enable=1
|
|
||||||
opcache.enable_cli=1
|
|
||||||
opcache.interned_strings_buffer=8
|
|
||||||
opcache.max_accelerated_files=10000
|
|
||||||
opcache.memory_consumption=128
|
|
||||||
opcache.save_comments=1
|
|
||||||
opcache.revalidate_freq=1
|
|
|
@ -1,20 +0,0 @@
|
||||||
FROM debian:jessie
|
|
||||||
|
|
||||||
# install the PHP extensions we need
|
|
||||||
# see https://friendi.ca/resources/requirements/
|
|
||||||
RUN set -ex; \
|
|
||||||
apt-get update; \
|
|
||||||
apt-get install -y wget gnupg2 libzip2 apt-transport-https lsb-release ca-certificates; \
|
|
||||||
wget -O /etc/apt/trusted.gpg.d/php.gpg https://packages.sury.org/php/apt.gpg; \
|
|
||||||
echo "deb https://packages.sury.org/php/ $(lsb_release -sc) main" > /etc/apt/sources.list.d/php.list; \
|
|
||||||
apt-get update; \
|
|
||||||
apt-get install -y php7.2-gd git curl openssl \
|
|
||||||
php7.2-cli php7.2-curl php7.2-mysql wget make \
|
|
||||||
php7.2-redis php7.2-memcached php7.2-memcache php7.2-json \
|
|
||||||
php7.2-apcu php7.2-xdebug php7.2-xml php7.2-zip php7.2-dev php7.2-mbstring \
|
|
||||||
; \
|
|
||||||
rm -rf /tmp/* /var/tmp/* /var/lib/apt/lists/*;
|
|
||||||
|
|
||||||
RUN phpenmod curl pdo pdo_mysql xml gd zip opcache mbstring posix ctype json iconv pcntl openssl
|
|
||||||
RUN phpdismod xdebug
|
|
||||||
ADD php.ini /etc/php/7.1/cli/conf.d/friendica.ini
|
|
|
@ -1,10 +0,0 @@
|
||||||
memory_limit = 768M
|
|
||||||
phar.readonly = 0 ; only for building phar files on CI - should be disabled on production environments
|
|
||||||
; Opcache
|
|
||||||
opcache.enable=1
|
|
||||||
opcache.enable_cli=1
|
|
||||||
opcache.interned_strings_buffer=8
|
|
||||||
opcache.max_accelerated_files=10000
|
|
||||||
opcache.memory_consumption=128
|
|
||||||
opcache.save_comments=1
|
|
||||||
opcache.revalidate_freq=1
|
|
|
@ -18,9 +18,9 @@ RUN set -ex; \
|
||||||
RUN phpenmod curl pdo pdo_mysql xml gd zip opcache mbstring posix ctype json iconv pcntl openssl
|
RUN phpenmod curl pdo pdo_mysql xml gd zip opcache mbstring posix ctype json iconv pcntl openssl
|
||||||
|
|
||||||
RUN set -ex; \
|
RUN set -ex; \
|
||||||
curl -O -L https://phar.phpunit.de/phpunit-8.phar; \
|
curl -O -L https://phar.phpunit.de/phpunit-9.phar; \
|
||||||
chmod +x phpunit-8.phar; \
|
chmod +x phpunit-9.phar; \
|
||||||
mv phpunit-8.phar /usr/local/bin/phpunit;
|
mv phpunit-9.phar /usr/local/bin/phpunit;
|
||||||
RUN set -ex; \
|
RUN set -ex; \
|
||||||
curl -O -L https://getcomposer.org/download/1.6.2/composer.phar; \
|
curl -O -L https://getcomposer.org/download/1.6.2/composer.phar; \
|
||||||
chmod +x composer.phar; \
|
chmod +x composer.phar; \
|
||||||
|
|
|
@ -18,9 +18,9 @@ RUN set -ex; \
|
||||||
RUN phpenmod curl pdo pdo_mysql xml gd zip opcache mbstring posix ctype json iconv pcntl openssl
|
RUN phpenmod curl pdo pdo_mysql xml gd zip opcache mbstring posix ctype json iconv pcntl openssl
|
||||||
|
|
||||||
RUN set -ex; \
|
RUN set -ex; \
|
||||||
curl -O -L https://phar.phpunit.de/phpunit-8.phar; \
|
curl -O -L https://phar.phpunit.de/phpunit-9.phar; \
|
||||||
chmod +x phpunit-8.phar; \
|
chmod +x phpunit-9.phar; \
|
||||||
mv phpunit-8.phar /usr/local/bin/phpunit;
|
mv phpunit-9.phar /usr/local/bin/phpunit;
|
||||||
RUN set -ex; \
|
RUN set -ex; \
|
||||||
curl -O -L https://getcomposer.org/download/1.6.2/composer.phar; \
|
curl -O -L https://getcomposer.org/download/1.6.2/composer.phar; \
|
||||||
chmod +x composer.phar; \
|
chmod +x composer.phar; \
|
||||||
|
|
|
@ -18,9 +18,9 @@ RUN set -ex; \
|
||||||
RUN phpenmod curl pdo pdo_mysql xml gd zip opcache mbstring posix ctype iconv pcntl openssl
|
RUN phpenmod curl pdo pdo_mysql xml gd zip opcache mbstring posix ctype iconv pcntl openssl
|
||||||
|
|
||||||
RUN set -ex; \
|
RUN set -ex; \
|
||||||
curl -O -L https://phar.phpunit.de/phpunit-8.phar; \
|
curl -O -L https://phar.phpunit.de/phpunit-9.phar; \
|
||||||
chmod +x phpunit-8.phar; \
|
chmod +x phpunit-9.phar; \
|
||||||
mv phpunit-8.phar /usr/local/bin/phpunit;
|
mv phpunit-9.phar /usr/local/bin/phpunit;
|
||||||
RUN set -ex; \
|
RUN set -ex; \
|
||||||
curl -O -L https://getcomposer.org/download/1.10.15/composer.phar; \
|
curl -O -L https://getcomposer.org/download/1.10.15/composer.phar; \
|
||||||
chmod +x composer.phar; \
|
chmod +x composer.phar; \
|
||||||
|
|
Loading…
Reference in a new issue