-
Notifications
You must be signed in to change notification settings - Fork 70
Misc improvements #102
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Misc improvements #102
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
61f6572
Add CRDT context to map and set tests. Adjusted test username for sec…
2d08acc
Merge branch 'develop' into 2.0.x
1253e29
Enable Riak service, add riak-test host, add needed bucket types for …
13b4ce7
set sudo to required due to riak-admin need. Add --prefer-source for …
af71624
actually adding "sudo" might help...
72b274f
Merge pull request #99 from basho/2.0.x
christophermancini d1bc20d
Merge pull request #100 from basho/travis
christophermancini dc613f4
remove obsolete clientid code. clientid was moved to the server in Ri…
4b3fdc5
remove clientid test...
eebe15c
Merge pull request #101 from basho/clientid
christophermancini fe995d8
fix composer issues link... add gitattributes file to be consistent w…
88a66bd
comment out tombstone check due to need to have delete_immediate = 1 …
0be3888
Merge branch 'master' of github.com:basho/riak-php-client into develop
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wasn't able to test this, but should be fine