From 7f83ba44db866c01c014a59f0136a5e327f7fea5 Mon Sep 17 00:00:00 2001 From: iducn <45056973+iducn@users.noreply.github.com> Date: Sat, 9 May 2020 10:16:41 +0800 Subject: [PATCH] cancel WITH_DOC and .travis.yml file (#24340) --- .travis.yml | 31 ---------------------------- tools/manylinux1/Dockerfile.GCC8 | 2 -- tools/xly_Dockerfile/Dockerfile.GCC8 | 2 -- 3 files changed, 35 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index ad1cc0ae14..0000000000 --- a/.travis.yml +++ /dev/null @@ -1,31 +0,0 @@ -language: cpp -cache: - directories: - - $HOME/.ccache - - $HOME/.cache/pip - - $TRAVIS_BUILD_DIR/build/third_party -sudo: required -dist: trusty -services: - - docker -os: - - linux -env: - - JOB=check_style -addons: - ssh_known_hosts: 13.229.163.131 -before_install: - # For pylint dockstring checker - - sudo pip install pylint pytest astroid isort - - | - function timeout() { perl -e 'alarm shift; exec @ARGV' "$@"; } -script: - - "travis_wait 30 sleep 1800 &" - - | - # 43min timeout - paddle/scripts/paddle_docker_build.sh ${JOB} - if [ $? -eq 0 ] || [ $? -eq 142 ]; then true; else exit 1; fi; -notifications: - email: - on_success: change - on_failure: always diff --git a/tools/manylinux1/Dockerfile.GCC8 b/tools/manylinux1/Dockerfile.GCC8 index 1f8e16f355..08495ff507 100644 --- a/tools/manylinux1/Dockerfile.GCC8 +++ b/tools/manylinux1/Dockerfile.GCC8 @@ -8,11 +8,9 @@ MAINTAINER PaddlePaddle Authors # ENV variables ARG WITH_GPU ARG WITH_AVX -ARG WITH_DOC ENV WITH_GPU=${WITH_GPU:-ON} ENV WITH_AVX=${WITH_AVX:-ON} -ENV WITH_DOC=${WITH_DOC:-OFF} ENV HOME /root # Add bash enhancements diff --git a/tools/xly_Dockerfile/Dockerfile.GCC8 b/tools/xly_Dockerfile/Dockerfile.GCC8 index 0eeace22b9..81de81365d 100644 --- a/tools/xly_Dockerfile/Dockerfile.GCC8 +++ b/tools/xly_Dockerfile/Dockerfile.GCC8 @@ -14,11 +14,9 @@ RUN /bin/bash -c 'if [[ -n ${UBUNTU_MIRROR} ]]; then sed -i 's#http://security.u # ENV variables ARG WITH_GPU ARG WITH_AVX -ARG WITH_DOC ENV WITH_GPU=${WITH_GPU:-ON} ENV WITH_AVX=${WITH_AVX:-ON} -ENV WITH_DOC=${WITH_DOC:-OFF} ENV HOME /root # Add bash enhancements -- GitLab