.travis.yml 261 B

123456789101112131415
  1. language: rust
  2. rust: nightly-2019-07-09
  3. cache:
  4. - cargo
  5. script: ci/run.sh
  6. # Publish the Docker image to the infra AWS registry
  7. before_deploy:
  8. - pip install --user awscli
  9. deploy:
  10. provider: script
  11. script: sh ci/publish-docker.sh
  12. on:
  13. branch: master