Skip to content

Commit

Permalink
Make circleci config compatible with 2.1 version
Browse files Browse the repository at this point in the history
  • Loading branch information
cedric-anne authored and trasher committed Feb 11, 2019
1 parent 64bdfe5 commit 1783b78
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .circleci/config.yml
Expand Up @@ -79,32 +79,32 @@ jobs:
root: /home/circleci
paths:
- codebase
"php5.6":
php_5_6_test_suite:
<<: *shared
docker:
- image: glpi/circleci-env-core:php_5.6_fpm-node
- image: circleci/mariadb:10.1
"php7.0":
php_7_0_test_suite:
<<: *shared
docker:
- image: glpi/circleci-env-core:php_7.0_fpm-node
- image: circleci/mariadb:10.2
"php7.1":
php_7_1_test_suite:
<<: *shared
docker:
- image: glpi/circleci-env-core:php_7.1_fpm-node
- image: circleci/mariadb:10.3
"php7.2":
php_7_2_test_suite:
<<: *shared
docker:
- image: glpi/circleci-env-core:php_7.2_fpm-node
- image: circleci/mariadb:10.3
"php7.3":
php_7_3_test_suite:
<<: *shared
docker:
- image: glpi/circleci-env-core:php_7.3_fpm-node
- image: circleci/mariadb:10.3
"phplatest":
php_latest_test_suite:
<<: *shared
docker:
- image: glpi/circleci-env-core:php_latest_fpm-node
Expand All @@ -116,19 +116,19 @@ workflows:
tests_all:
jobs:
- checkout
- php5.6:
- php_5_6_test_suite:
requires:
- checkout
- php7.0:
- php_7_0_test_suite:
requires:
- checkout
- php7.1:
- php_7_1_test_suite:
requires:
- checkout
- php7.2:
- php_7_2_test_suite:
requires:
- checkout
- php7.3:
- php_7_3_test_suite:
requires:
- checkout
scheduled_build:
Expand All @@ -141,6 +141,6 @@ workflows:
- master
jobs:
- checkout
- phplatest:
- php_latest_test_suite:
requires:
- checkout

0 comments on commit 1783b78

Please sign in to comment.