Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Merge pull request #15412 from kpayson64/fix_gevent_tests | Jan Tattermusch | 2018-05-16 |
|\ | | | | | Pin gevent | ||
| * | Changes | kpayson64 | 2018-05-16 |
| | | |||
| * | Changes | kpayson64 | 2018-05-16 |
| | | |||
| * | Pin gevent | kpayson64 | 2018-05-16 |
| | | |||
* | | Add --user flag to pip install in build_python.sh | Matt Kwong | 2018-05-15 |
| | | |||
* | | Install futures package only on Python 2 | Mehrdad Afshari | 2018-05-14 |
| | | |||
* | | PHP: chang shared channel behavior | ZhouyihaiDing | 2018-05-12 |
| | | | | | | | | | | | | | | | | | | | | | | | | PHP: add persistent list upper bounnd check change upper bound from global to each target add ref/unreef; Only delete ref_count=0; make the code cleaner persistent map update after review u2nd pdate after the review | ||
* | | avoid concurrency issues with dotnet restore | Jan Tattermusch | 2018-05-10 |
| | | |||
* | | get rid of Jenkins specific yaml hack | Jan Tattermusch | 2018-05-10 |
| | | |||
* | | Remove the fallback when creating Python virtual env | Matt Kwong | 2018-05-04 |
|/ | | | | | | | | | | See https://github.com/grpc/grpc/issues/15253 for more context. The original behavior when running Python tests is to try to create a virtual env with the specifed Python version. If there is an issue with that, fallback to the system's default Python version. This leads to misleading test results, so removing the fallback and failing the test when virtual env fails to instantiate the specified Python version is the new behavior. | ||
* | Bump pip version to 10.0.1 | Mehrdad Afshari | 2018-04-19 |
| | |||
* | Upgrade pip for virtualenv Python in build_python.sh | Matt Kwong | 2018-04-17 |
| | | | | | | With the upgrade of Kokoro macOS workers to Sierra, not all versions of Python have a pip version new enough to have TLSv1.2. This change should make macOS Python testing more resilient to environment changes. | ||
* | Update pip pin from 9.0.1 to 9.0.2 | Matt Kwong | 2018-04-06 |
| | |||
* | Unpin pip version installed in build_python.sh | Matt Kwong | 2018-04-06 |
| | | | | | | | Fix for issue #14815. Pinning to 9.0.3 doesn't work because pip fails to recognize that as a valid version. Newer versions of pip have a fallback on macOS to use SecureTransport instead of their outdated OpenSSL that doesn't support TLSv1.2. | ||
* | Merge pull request #13634 from hassox/ruby-module-name | apolcyn | 2018-03-29 |
|\ | | | | | Updates the ruby generator RubyTypeOf to correctly account for underscores in packages | ||
* \ | Merge pull request #14809 from Everysick/memsize-unavailable | apolcyn | 2018-03-28 |
|\ \ | | | | | | | Use GRPC_RB_MEMSIZE_UNAVAILABLE in grpc_rb_md_ary_data_type | ||
| * | | Add test for verifying to get memory usage in client request | everysick | 2018-03-29 |
| | | | |||
* | | | Initial gevent support | kpayson64 | 2018-03-27 |
|/ / | | | | | | | | | Because some cpp code ends up leaking into cython, we change the cython generator to generate cpp code. | ||
| * | Updates the ruby generator RubyAsType to correctly account for underscores ↵ | Daniel Neighman | 2018-03-26 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | in packages Prior to this change, when the ruby generator tried to reference an entity that was not part of the same package (or a direct parent package) and the package contains underscores, the result would simply uppercase the first character. It should however uppercase each letter that proceeds an underscore and remove underscores. i.e. ``` package my_package.service; import "my_package/data.proto"; service MyService { rpc Test (data.Request) returns data.Response {} } ``` Was ```ruby # ... rpc :Test, My_package::Data::REquest, My_package::Data::Response # ... ``` Should be: ```ruby # ... rpc :Test, MyPackage::Data::REquest, My_package::Data::Response # ... ``` | ||
* | | Fix run_tests_in_workspace.sh to pass shellcheck | Mehrdad Afshari | 2017-12-15 |
| | | |||
* | | Fix run_grpc-node.sh to pass shellcheck | Mehrdad Afshari | 2017-12-15 |
| | | |||
* | | Fix run_ruby_end2end_tests.sh to pass shellcheck | Mehrdad Afshari | 2017-12-15 |
| | | |||
* | | Fix run_ruby.sh to pass shellcheck | Mehrdad Afshari | 2017-12-15 |
| | | |||
* | | Fix run_python.sh to pass shellcheck | Mehrdad Afshari | 2017-12-15 |
| | | |||
* | | Fix run_lcov.sh to pass shellcheck | Mehrdad Afshari | 2017-12-15 |
| | | |||
* | | Fix pre_build_ruby.sh to pass shellcheck | Mehrdad Afshari | 2017-12-15 |
| | | |||
* | | Fix pre_build_csharp.sh to pass shellcheck | Mehrdad Afshari | 2017-12-15 |
| | | |||
* | | Fix pre_build_cmake.sh to pass shellcheck | Mehrdad Afshari | 2017-12-15 |
| | | |||
* | | Fix post_tests_ruby.sh to pass shellcheck | Mehrdad Afshari | 2017-12-15 |
| | | |||
* | | Fix post_tests_python.sh to pass shellcheck | Mehrdad Afshari | 2017-12-15 |
| | | |||
* | | Fix post_tests_php.sh to pass shellcheck | Mehrdad Afshari | 2017-12-15 |
| | | |||
* | | Fix post_tests_csharp.sh to pass shellcheck | Mehrdad Afshari | 2017-12-15 |
| | | |||
* | | Fix post_tests_c.sh to pass shellcheck | Mehrdad Afshari | 2017-12-15 |
| | | |||
* | | Fix bundle_install_wrapper.sh to pass shellcheck | Mehrdad Afshari | 2017-12-15 |
| | | |||
* | | Fix build_ruby.sh to pass shellcheck | Mehrdad Afshari | 2017-12-15 |
| | | |||
* | | Fix build_python_msys2.sh to pass shellcheck | Mehrdad Afshari | 2017-12-15 |
| | | |||
* | | Fix build_php.sh to pass shellcheck | Mehrdad Afshari | 2017-12-15 |
| | | |||
* | | Fix build_csharp.sh to pass shellcheck | Mehrdad Afshari | 2017-12-15 |
| | | |||
* | | Fix build_python.sh to pass shellcheck | Mehrdad Afshari | 2017-12-15 |
|/ | |||
* | Don't delete grpc-node test script | murgatroid99 | 2017-11-06 |
| | |||
* | Remove src/node and references to it | murgatroid99 | 2017-10-25 |
| | | | | | | This removes all of the node code and tests from the repo, along with the scripts for running Node unit tests, performance tests, and artifact builds. The scripts for running tests from the grpc-node repository are untouched. | ||
* | Add a test under ruby GC stress mode and fix non-GC-rooted variable bug | Alexander Polcyn | 2017-10-05 |
| | |||
* | Merge pull request #12596 from matt-kwong/node-testing | Michael Lumish | 2017-09-28 |
|\ | | | | | Add testing of grpc-node for Linux and MacOS | ||
* | | Pin pip at 9.0.1 | Nathaniel Manista | 2017-09-28 |
| | | |||
| * | Add testing of grpc-node for Linux and MacOS | Matt Kwong | 2017-09-20 |
|/ | |||
* | support building with VS2017 | Jan Tattermusch | 2017-08-23 |
| | |||
* | add cmake generator option | Jan Tattermusch | 2017-08-23 |
| | |||
* | build C tests and protoc artifacts on windows with cmake | Jan Tattermusch | 2017-08-23 |
| | |||
* | Merge pull request #11901 from nathanielmanistaatgoogle/grpc_testing | Nathaniel Manista | 2017-07-25 |
|\ | | | | | gRPC Python test infrastructure. | ||
| * | gRPC Python test infrastructure | Nathaniel Manista | 2017-07-25 |
| | | | | | | | | (The time-related first part of it, anyway.) |