]> git.p6c8.net - jirafeau.git/blob - .gitlab-ci.yml
[BUGFIX] Replace broken badge source URL
[jirafeau.git] / .gitlab-ci.yml
1 # Select docker image from https://hub.docker.com/_/php/
2 image: php:7.1
3
4 # Select what we should cache
5 cache:
6 paths:
7 - vendor/
8
9 before_script:
10 # Install git, the docker php image doesn't have it installed by default
11 - apt-get update -yqq
12 - apt-get install git -yqq
13 - apt-get install zip -yqq
14 # Enable necessary php extensions
15 - docker-php-ext-enable curl && docker-php-ext-enable json && docker-php-ext-enable zip && docker-php-ext-enable mbstring && docker-php-ext-enable gd && docker-php-ext-enable pdo_mysql
16 # Install composer
17 - curl -sS https://getcomposer.org/installer | php
18 # Create composer.json file manually, since this is a project without any non-dev dependencies yet
19 - php composer.phar require --dev jakub-onderka/php-parallel-lint
20 # Install all project dependencies
21 - php composer.phar install
22
23 # Run tests
24 ## Default test with PHP7.1
25 test_app_php71:
26 script:
27 - ./vendor/bin/parallel-lint --exclude vendor .
28
29 # Run same tests with PHP7.0
30 test_app_php70:
31 image: php:7.0
32 script:
33 - ./vendor/bin/parallel-lint --exclude vendor .
34
35 # Run same tests with PHP5.6
36 test_app_php56:
37 image: php:5.6
38 script:
39 - ./vendor/bin/parallel-lint --exclude vendor .

patrick-canterino.de