Skip to content
Snippets Groups Projects
  1. Nov 27, 2017
    • Mike Holler's avatar
      Added all_branches to tags: true block · 617bbc9b
      Mike Holler authored
      617bbc9b
    • Michael Holler's avatar
      Add support for Python lib continuous deployment. · 0c8b4c76
      Michael Holler authored
      Use a combination of travis and twine to publish to PyPI. New
      publications will be made:
      
      * When `master` is updated. This will trigger the publication of a
        the Python artifact versioned an iso-compliant build datetime. In this
        way, the cutting edge version will always be available via PyPI.
      * When a new git tag is pushed. Tag pushes trigger the publication of
        a python artifact with the same version as the git tag, with the
        leading `v` stripped if present (`v1.2.3` becomes `1.2.3`).
      
      Publications rely on Travis having a PYPI_PASSWORD environment set in
      the project settings. See the Travis CI documentation for information on
      [setting environment variables which containing sensitive data][1]. Make
      extra sure the "Display value in build log" switch is OFF.
      
      In addition to setting the previously mentioned `PYPI_PASSWORD`
      environment variable, the owner of the PyPI `flatbuffers` repository
      should, after merging this commit into master, add his own commit to
      change `mikeholler` in `.travis/deploy-python.sh` to his username. It's
      also recommended that the owner of `flatbuffers` use a separate account
      in the unlikely event that the environment variable somehow becomes
      compromised. Again, this is very unlikely, since the environment
      variable is only set for "safe" builds approved by maintainers (not on
      random pull requests).
      
      [1]: https://docs.travis-ci.com/user/environment-variables/#Defining-Variables-in-Repository-Settings
      0c8b4c76
  2. Nov 20, 2017
  3. Nov 17, 2017
  4. Nov 16, 2017
  5. Nov 13, 2017
  6. Nov 09, 2017
  7. Nov 06, 2017
  8. Oct 26, 2017
  9. Oct 23, 2017
  10. Oct 20, 2017
  11. Oct 16, 2017
  12. Oct 14, 2017
  13. Oct 13, 2017
  14. Oct 09, 2017
  15. Oct 06, 2017
  16. Oct 05, 2017
  17. Oct 02, 2017
  18. Sep 25, 2017
  19. Sep 22, 2017
  20. Sep 21, 2017
    • endorph-soft's avatar
      Add constant accessors to C++ unions (#4433) · 21a81219
      endorph-soft authored
      * Add constant accessors to C++ unions
      
      * Remove redundant const pointer return type
      
      * Update generate_code.bat to reflect generate_code.sh
      
      * Add updated generated files
      
      * Remove extra space from generated code
      
      * Update generated files
      
      * Change directory back to tests after generating code
      21a81219
    • Khem Raj's avatar
      Fix build with clang on big-endian targets (#4440) · 28920aff
      Khem Raj authored
      
      * flatbuffers: Move EndianSwap template to flatbuffers/base.h
      
      Clang complains
      call to function 'EndianSwap' that is neither visible in the template definition nor found by argument-dependent lookup
           return EndianSwap(t);
      
      This seems to be due to limitation of two-phase lookup of dependent names in template definitions
      
      Its not being found using associated namespaces therefore
      it has to be made visible at the template definition site as well
      
      Signed-off-by: default avatarKhem Raj <raj.khem@gmail.com>
      
      * use __builtin_bswap16 when building with clang
      
      clang pretends to be gcc 4.2.0 and therefore the code does
      not use __builtin_bswap16 but tries to synthesize it
      
      Signed-off-by: default avatarKhem Raj <raj.khem@gmail.com>
      28920aff
Loading