Use newer version of os-x compiler.

There is a warning that xcode6.4 is going away.
1 file changed
tree: 4046e44bb5b9223ff0c270bb9bf2d0533258177d
  1. .gitignore/
  2. .gitmodules
  3. .travis.yml
  4. config.sh
  5. deploy_travis.sh
  6. README.md
README.md

Apache Beam Wheels

Overview

beam-wheels is a helper repository of apache beam, which helps a Release Manager build python wheels on Linux/MacOS in a release process.

Structure

There are 2 major parts in this repository.

  • multibuild as git submodule, helps build python wheels based on different os.

  • travis configuration files, setups environment variables and deployment strategy.

    • .travis.yml contains a set of environment variables and steps of build process.
    • deploy_travis.sh defines that final python wheels will be deployed to dist.apache.org/dev using svn with your apache credential.
    • config.sh defines custom build steps.

User Guide

  • Fork this repo into your own github account.

  • Sign up travis with your github account and add this folk beam-wheels repository into travis.

  • In travis build console > More options > Settings > Environment Variables:

    • Add VERSION with ‘Display value in build log’ enabled (e.g.VERSION=2.6.0).

    • Add APACHE_USERNAME and APACHE_SECRET with ‘Display value in build log’ disabled(which encrypt your credential).

      NOTE: If you have special characters in your credential, please escape them following the guide properly.

  • Create and push a new branch(e.g. release_2_6_0) into your folk beam-wheels repository, which will trigger the travis build.

  • Confirm that build successful and wheels get staged on dist.apache.org.

  • Delete your apache credential in travis environment.