https://github.com/tensorflow/tensor2tensor
Revision 8e19adfdefb0ca17b67b3b896cb3774a94c656b5 authored by Afroz Mohiuddin on 21 August 2019, 21:58:27 UTC, committed by Copybara-Service on 21 August 2019, 21:59:02 UTC
PiperOrigin-RevId: 264699622
1 parent 5386fb1
Raw File
Tip revision: 8e19adfdefb0ca17b67b3b896cb3774a94c656b5 authored by Afroz Mohiuddin on 21 August 2019, 21:58:27 UTC
Bump version to 1.14.0
Tip revision: 8e19adf
.travis.yml
sudo: required
language: python
cache: pip
git:
  depth: 3
  quiet: true
services:
  - docker
python:
  - "2.7"
  - "3.6"
env:
  global:
    - T2T_PROBLEM=algorithmic_reverse_binary40_test
    - T2T_DATA_DIR=/tmp/t2t-data
    - T2T_TRAIN_DIR=/tmp/t2t-train
    - TF_LATEST="1.14.*"
    # This is necessary to have gsutil work with Python 2.7
    - BOTO_CONFIG=/dev/null
  matrix:
    - TF_VERSION="1.14.*"
install:
  - ./oss_scripts/oss_pip_install.sh
script:
  - ./oss_scripts/oss_tests.sh
  - ./oss_scripts/oss_integration_test.sh

  # Conditional commands should each be in a separate block to get proper
  # errors on Travis.
  #
  # TODO(afrozm): Re-enable if this becomes an issue.
  # - if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
  #       pylint -j 2 tensor2tensor;
  #   fi
back to top