1. 28 Mar, 2019 1 commit
  2. 26 Mar, 2019 1 commit
  3. 14 Mar, 2019 1 commit
  4. 12 Mar, 2019 2 commits
  5. 11 Mar, 2019 1 commit
    • Sydney Acksman's avatar
      Bump target frameworks of C# programs from netcoreapp1.0 to netcoreapp2.1 (#5838) · 15fab910
      Sydney Acksman authored
      * Bump target frameworks from netcoreapp1.0 to netcoreapp2.2.
      Move global.json up to root of repo, change SDK ver to 2.2.100
      Change .net core sdk in dockerfile for kokoro to ver 2.2.100
      
      * Re-add curl install
      
      * Change all exe target to 2.1
      
      * Fix incorrect versions in global.json and Dockerfile
      
      * Downgrade version to 2.1 to match exe targets
      
      * introduce separate testing Dockerfile for C#
      
      * revert changes to the shared Dockerfile
      
      * use netcoreapp2.1 for C# conformance tests
      
      * use language specific dockerfile for testing C#
      
      * Edit compatibility tests script to use parameters instead of file copies
      
      * install dotnet SDK on windows before running the tests
      
      * update csharp_EXTRA_DIST
      15fab910
  6. 07 Mar, 2019 1 commit
  7. 28 Feb, 2019 1 commit
  8. 26 Feb, 2019 2 commits
    • Yilun Chong's avatar
      fix macos build for High Sierra (#5780) · 400845ae
      Yilun Chong authored
      * fix macos build by changing xcode version
      
      * add comments
      
      * fix benchmark build for mac
      
      * fix for gem option and install npm
      
      * add test for node and npm
      
      * fix node
      
      * fix for node
      
      * another attempts to fix node
      
      * another attempts
      
      * clean up
      400845ae
    • Yilun Chong's avatar
      fix macos build for High Sierra (#5780) · 89b914f8
      Yilun Chong authored
      * fix macos build by changing xcode version
      
      * add comments
      
      * fix benchmark build for mac
      
      * fix for gem option and install npm
      
      * add test for node and npm
      
      * fix node
      
      * fix for node
      
      * another attempts to fix node
      
      * another attempts
      
      * clean up
      89b914f8
  9. 21 Feb, 2019 1 commit
  10. 06 Feb, 2019 1 commit
  11. 02 Feb, 2019 1 commit
    • Paul Yang's avatar
      Add several fixes for python toolchain (#5667) · 5b4ac53c
      Paul Yang authored
      * Add several fixes for python toolchain
      
      * Fix versin regex
      
      * Make script exit on error
      
      * Fix version regex
      
      * Fix version regex
      
      * Fix version regex
      
      * Fix version regex
      
      * Make test run on the current commit
      
      * Fix test
      
      * Fix test
      
      * Use git to retrieve current commit
      
      * Fix tests
      
      * Fix tests
      
      * Also make linux and mac work on the current commit
      
      * Fix test
      5b4ac53c
  12. 01 Feb, 2019 1 commit
    • Paul Yang's avatar
      Use gnu for ruby build because strptime is provided by posix (#5660) · 7d9377e7
      Paul Yang authored
      * Use gnu for ruby build because strptime is provided by posix
      
      * Move option to extconf.rb
      
      * Remove unused code in Rakefile
      
      * Add config files for kokoro test
      
      * Use gnu 11
      
      * Define _XOPEN_SOURCE
      
      * Add gnu11 option
      
      * Remove XOPEN
      
      * Try base_cc_flags
      
      * Try config_options
      
      * Move time.h to top
      
      * Try -D_XOPEN_SOURCE=700
      
      * Define XOPEN_SOURCE directly
      
      * Try extconf.rb
      
      * Try CFLAGS
      
      * Try ext.cross_config_options
      
      * Make mac ruby release job fail on error
      
      * Try again
      
      * Try define _XOPEN_SOURCE in extconf.rb
      
      * Try again
      
      * Define __USE_XOPEN
      
      * Remove 2.6.0
      
      * No mingw
      
      * Throw error on mingw
      
      * Remove XOPEN_SOURCE in upb
      
      * Add back mingw
      
      * Remove comment
      7d9377e7
  13. 27 Jan, 2019 2 commits
  14. 26 Jan, 2019 2 commits
  15. 25 Jan, 2019 1 commit
  16. 23 Jan, 2019 1 commit
  17. 08 Jan, 2019 1 commit
    • Paul Yang's avatar
      Add ruby 2.6 gem build for linux (#5537) · c3340b20
      Paul Yang authored
      * Add ruby 2.6 gem build for linux
      
      * Add docker hub organization
      
      * Add ruby2.6 in cross compile targets
      
      * Fix tests
      
      * Check mac version
      
      * No need to install php in preparation for mac
      c3340b20
  18. 03 Jan, 2019 1 commit
    • Paul Yang's avatar
      Add ruby 2.6 test (#5528) · de9e1a04
      Paul Yang authored
      * Add ruby 2.6 test
      
      * Fix broken tests
      
      * Fix compatibility test
      
      * Fix bundler version
      
      * Use new docker image
      
      * Fix broken test
      
      * Use new docker image in ruby26 test
      
      * Install ruby for mac
      de9e1a04
  19. 02 Jan, 2019 1 commit
  20. 21 Dec, 2018 1 commit
  21. 19 Dec, 2018 2 commits
  22. 18 Dec, 2018 2 commits
    • Adam Cozzette's avatar
      Removed Kokoro config for 64-bit Linux · 453274b7
      Adam Cozzette authored
      This Kokoro configuration is no longer being used and the build.sh
      script does not work anymore, so let's delete this configuration.
      453274b7
    • Paul Yang's avatar
      Php 7.3 fix (#5434) · d7c44095
      Paul Yang authored
      * Inherit from message instead of implement
      
      When regestering class (implmenets other class) during MINIT, zend_class_implements
      would call zend_class_entry->interface_gets_implemented(). In PHP-7.3 interface_gets_implemented shares the same location with create_object.
      However, during MINIT, the global object storeage hasn't been initialized. And thus, caused segment fault in php 7.3.
      
      * Use zend_string_init where interned string may be the value.
      zend_string_dup will keep using the existing interned string.
      In php 7.3, interned string cannot be destroyed from user's code.
      
      * Uncommment debug code
      
      * Use latest phpunit for each php versions
      
      * Revert change in Dockerfile
      
      * Update php test to use the new docker image
      
      * Update composer
      
      * Change docker organization
      
      * Update phpunit
      
      * Debug phpunit
      
      * Store phpunit into bin dir in docker image
      
      * Install valgrind to docker
      
      * Fix compatibility test
      
      * Remove generated_service_test from compatibility c extension test
      
      * Update 32bit php test to the new docker image
      
      * Install bison
      
      * Fix build.sh
      
      * Fix DOCKERIMAGE_PREFIX
      
      * Fix basename
      
      * Add comment to build_and_run_docker2.sh
      
      * Remove commented code
      
      * Fix comments
      d7c44095
  23. 13 Dec, 2018 2 commits
  24. 11 Dec, 2018 2 commits
  25. 29 Nov, 2018 1 commit
    • Paul Yang's avatar
      Change MACOSX_DEPLOYMENT_TARGET to 10.9 (#5406) · 704037f2
      Paul Yang authored
      * Add kokoro build for python source package
      
      * Use libc++ for xcode 10 (#5303)
      
      The xcode 10 removes the deprecated libstdc++ library. We could set
      "MACOSX_DEPLOYMENT_TARGET" to "10.9" to use libc++ instead.
      
      * Add python 3.7 build
      
      * Add build for python 3.7 on linux and windows
      
      * Remove unused source build
      
      * Add comment
      
      * Fix $MACOSX_DEPLOYMENT_TARGET mismatch
      
      * Fix MACOSX_DEPLOYMENT_TARGET mismatch
      
      * Add missing import for sysconfig
      
      * Add missing imports
      704037f2
  26. 22 Oct, 2018 1 commit
  27. 18 Oct, 2018 1 commit
    • Paul Yang's avatar
      Add ruby 2.3, 2.4 and 2.5 test for linux. (#5256) · 333b3cea
      Paul Yang authored
      * Add ruby 2.3, 2.4 and 2.5 test for linux.
      
      * Update kokoro files
      
      * Add back commented gc test
      
      * Fix gc_test failure
      
      * Remove unused code
      
      * Update ruby 2.5.0 to 2.5.1
      
      * Update ruby 2.3 to 2.3.8
      
      * Remove useless comment
      333b3cea
  28. 12 Oct, 2018 1 commit
  29. 25 Sep, 2018 1 commit
  30. 07 Sep, 2018 2 commits
  31. 23 Aug, 2018 1 commit