-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #102 from basho/develop
Misc improvements
- Loading branch information
Showing
10 changed files
with
107 additions
and
132 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
* text=auto | ||
|
||
*.php text eol=lf | ||
*.yml text eol=lf | ||
*.xml text eol=lf | ||
*.md text eol=lf | ||
|
||
*.png binary | ||
*.jpg binary | ||
*.gif binary | ||
*.ico binary |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,41 @@ | ||
language: php | ||
|
||
php: | ||
- 5.4 | ||
- 5.5 | ||
- 5.6 | ||
- 7.0 | ||
- hhvm | ||
sudo: false # enables docker | ||
install: | ||
- composer install | ||
|
||
sudo: required | ||
|
||
addons: | ||
hosts: | ||
- riak-test | ||
|
||
before_script: | ||
- composer self-update | ||
- composer install --prefer-source | ||
- sudo riak-admin bucket-type create phptest_counters '{"props":{"datatype":"counter"}}' | ||
- sudo riak-admin bucket-type create phptest_maps '{"props":{"datatype":"map"}}' | ||
- sudo riak-admin bucket-type create phptest_sets '{"props":{"datatype":"set"}}' | ||
- sudo riak-admin bucket-type create phptest_search '{"props":{}}' | ||
- sudo riak-admin bucket-type create phptest_leveldb '{"props":{"backend":"leveldb_backend"}}' | ||
- sudo riak-admin bucket-type activate phptest_counters | ||
- sudo riak-admin bucket-type activate phptest_maps | ||
- sudo riak-admin bucket-type activate phptest_sets | ||
- sudo riak-admin bucket-type activate phptest_search | ||
- sudo riak-admin bucket-type activate phptest_leveldb | ||
|
||
notifications: | ||
webhooks: http://basho-engbot.herokuapp.com/travis?key=8d594c660ec46f616e37e24fd941c0ea1fc67963 | ||
email: [email protected] | ||
script: "php vendor/bin/phpunit --testsuite 'Unit Tests'" | ||
|
||
script: "./vendor/bin/phpunit --coverage-text" | ||
|
||
services: | ||
- riak | ||
|
||
matrix: | ||
allow_failures: | ||
- php: 7.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.