Skip to content

Commit

Permalink
Replace Travis CI with CircleCI (#2185)
Browse files Browse the repository at this point in the history
* Replace Travis CI with CircleCI
  • Loading branch information
retlehs authored May 14, 2019
1 parent 892ae84 commit cd05a13
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 41 deletions.
28 changes: 28 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
version: 2
jobs:
build-php73:
docker:
- image: rootsdev/ubuntu18.04-php7.3-composer-nvm-yarn:0.0.1
steps:
- checkout
- run: yarn && yarn test && yarn build && yarn build:production && composer install && composer test
build-php72:
docker:
- image: rootsdev/ubuntu18.04-php7.2-composer-nvm-yarn:0.0.1
steps:
- checkout
- run: yarn && yarn test && yarn build && yarn build:production && composer install && composer test
build-php71:
docker:
- image: rootsdev/ubuntu18.04-php7.1-composer-nvm-yarn:0.0.1
steps:
- checkout
- run: yarn && yarn test && yarn build && yarn build:production && composer install && composer test

workflows:
version: 2
build:
jobs:
- build-php73
- build-php72
- build-php71
2 changes: 1 addition & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
/.github export-ignore
/.circleci export-ignore
/.gitattributes export-ignore
/.travis.yml export-ignore
40 changes: 0 additions & 40 deletions .travis.yml

This file was deleted.

0 comments on commit cd05a13

Please # to comment.