This is an automated email from the ASF dual-hosted git repository. azagrebin pushed a commit to branch flip116 in repository https://gitbox.apache.org/repos/asf/flink.git
commit 6284621cc0c8b9c9bb2d3632d049195fd83d7543 Author: Andrey Zagrebin <[email protected]> AuthorDate: Wed Apr 15 13:01:39 2020 +0300 change type to cron --- .travis.yml | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/.travis.yml b/.travis.yml index 3b4d212..029e31d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -74,6 +74,8 @@ notifications: on_success: change on_pull_requests: false +type: cron + stages: - name: compile - name: test @@ -85,53 +87,53 @@ jdk: "openjdk8" jobs: include: # main profile - - if: type in (pull_request, push) + - if: type in (pull_request, push, cron) stage: compile script: ./tools/travis_controller.sh compile env: PROFILE="-Dhadoop.version=2.8.3 -Dinclude_hadoop_aws -Dscala-2.11" name: compile - - if: type in (pull_request, push) + - if: type in (pull_request, push, cron) stage: test script: ./tools/travis_controller.sh core env: PROFILE="-Dhadoop.version=2.8.3 -Dinclude_hadoop_aws -Dscala-2.11" name: core - - if: type in (pull_request, push) + - if: type in (pull_request, push, cron) script: ./tools/travis_controller.sh python env: PROFILE="-Dhadoop.version=2.8.3 -Dinclude_hadoop_aws -Dscala-2.11" name: python - - if: type in (pull_request, push) + - if: type in (pull_request, push, cron) script: ./tools/travis_controller.sh libraries env: PROFILE="-Dhadoop.version=2.8.3 -Dinclude_hadoop_aws -Dscala-2.11" name: libraries - - if: type in (pull_request, push) + - if: type in (pull_request, push, cron) script: ./tools/travis_controller.sh blink_planner env: PROFILE="-Dhadoop.version=2.8.3 -Dinclude_hadoop_aws -Dscala-2.11" name: blink_planner - - if: type in (pull_request, push) + - if: type in (pull_request, push, cron) script: ./tools/travis_controller.sh connectors env: PROFILE="-Dhadoop.version=2.8.3 -Dinclude_hadoop_aws -Dscala-2.11" name: connectors - - if: type in (pull_request, push) + - if: type in (pull_request, push, cron) script: ./tools/travis_controller.sh kafka/gelly env: PROFILE="-Dhadoop.version=2.8.3 -Dinclude_hadoop_aws -Dscala-2.11" name: kafka/gelly - - if: type in (pull_request, push) + - if: type in (pull_request, push, cron) script: ./tools/travis_controller.sh tests env: PROFILE="-Dhadoop.version=2.8.3 -Dinclude_hadoop_aws -Dscala-2.11" name: tests - - if: type in (pull_request, push) + - if: type in (pull_request, push, cron) script: ./tools/travis_controller.sh legacy_scheduler_core env: PROFILE="-Dhadoop.version=2.8.3 -Dinclude_hadoop_aws -Dscala-2.11" name: core - legacy_scheduler - - if: type in (pull_request, push) + - if: type in (pull_request, push, cron) script: ./tools/travis_controller.sh legacy_scheduler_tests env: PROFILE="-Dhadoop.version=2.8.3 -Dinclude_hadoop_aws -Dscala-2.11" name: tests - legacy_scheduler - - if: type in (pull_request, push) + - if: type in (pull_request, push, cron) script: ./tools/travis_controller.sh misc env: PROFILE="-Dhadoop.version=2.8.3 -Dinclude_hadoop_aws -Dscala-2.11" name: misc - - if: type in (pull_request, push) + - if: type in (pull_request, push, cron) stage: cleanup script: ./tools/travis_controller.sh cleanup env: PROFILE="-Dhadoop.version=2.8.3 -Dinclude_hadoop_aws -Dscala-2.11"
