mirror of
https://github.com/idanoo/php-resque.git
synced 2024-11-24 01:05:13 +00:00
.gitlab-ci.yml ordering
This commit is contained in:
parent
6bedeaab5f
commit
70090b4d66
@ -1,3 +1,20 @@
|
|||||||
|
.docker_boostrap: &docker_boostrap |
|
||||||
|
[[ ! -e /.dockerenv ]] && exit 0
|
||||||
|
set -xe
|
||||||
|
|
||||||
|
# Install git (the php image doesn't have it) which is required by composer
|
||||||
|
apt-get update -yq
|
||||||
|
apt-get install git redis-server phpredis -y
|
||||||
|
|
||||||
|
# Install phpunit, the tool that we will use for testing
|
||||||
|
curl --location --output /usr/local/bin/phpunit https://phar.phpunit.de/phpunit.phar
|
||||||
|
chmod +x /usr/local/bin/phpunit
|
||||||
|
|
||||||
|
# Install mysql driver
|
||||||
|
# Here you can install any other extension that you need
|
||||||
|
docker-php-ext-install redis
|
||||||
|
|
||||||
|
|
||||||
# Test PHP 7.0
|
# Test PHP 7.0
|
||||||
test:7.0:
|
test:7.0:
|
||||||
image: php:7.0
|
image: php:7.0
|
||||||
@ -26,20 +43,4 @@ test:7.2:
|
|||||||
script:
|
script:
|
||||||
- phpunit --configuration phpunit.xml.dist
|
- phpunit --configuration phpunit.xml.dist
|
||||||
tags:
|
tags:
|
||||||
- docker
|
- docker
|
||||||
|
|
||||||
.docker_boostrap: &docker_boostrap |
|
|
||||||
[[ ! -e /.dockerenv ]] && exit 0
|
|
||||||
set -xe
|
|
||||||
|
|
||||||
# Install git (the php image doesn't have it) which is required by composer
|
|
||||||
apt-get update -yq
|
|
||||||
apt-get install git redis-server phpredis -y
|
|
||||||
|
|
||||||
# Install phpunit, the tool that we will use for testing
|
|
||||||
curl --location --output /usr/local/bin/phpunit https://phar.phpunit.de/phpunit.phar
|
|
||||||
chmod +x /usr/local/bin/phpunit
|
|
||||||
|
|
||||||
# Install mysql driver
|
|
||||||
# Here you can install any other extension that you need
|
|
||||||
docker-php-ext-install redis
|
|
Loading…
Reference in New Issue
Block a user