crs4 / pydoop

A Python MapReduce and HDFS API for Hadoop
Apache License 2.0
237 stars 59 forks source link

Travis deploy #287

Closed simleo closed 6 years ago

simleo commented 6 years ago

Adds a deploy phase to the Travis build. For now, actual deployment (to Docker Hub) is commented out, so the new phase just checks that pydoop works when installed from the release tarball.

Note that the deployment phase will NOT trigger from this PR, since it's set to run from a tag in the main repo:

deploy:
  provider: script
  script: .travis/deploy
  on:
    python: "3.6"
    repo: crs4/pydoop
    tags: true

See #288 for a test version.