Skip to content

Commit

Permalink
Merge branch 'develop' of https://github.com/Napp/AeroGear-Push
Browse files Browse the repository at this point in the history
  • Loading branch information
Mads Møller committed Feb 6, 2018
2 parents dfdf695 + 7698fd3 commit acd386e
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
build:
docker:
# specify the version you desire here
- image: circleci/php:7.1.5-browsers
- image: napp/php-ci:7.1

# Specify service dependencies here if necessary
# CircleCI maintains a library of pre-built images
Expand All @@ -18,20 +18,19 @@ jobs:

steps:
- checkout

- run: composer self-update
# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "composer.json" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- composer-v1-{{ checksum "composer.json" }}
- composer-v1-

- run: composer install -n --prefer-dist

- save_cache:
paths:
- ./vendor
key: v1-dependencies-{{ checksum "composer.json" }}
key: composer-v1-{{ checksum "composer.json" }}

# run tests!
- run: phpunit
- run: ./vendor/bin/phpunit

0 comments on commit acd386e

Please sign in to comment.