You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by tz...@apache.org on 2020/05/14 08:42:34 UTC

[flink-statefun] branch master updated: [FLINK-17684] [e2e] Enable E2E tests in Travis builds

This is an automated email from the ASF dual-hosted git repository.

tzulitai pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink-statefun.git


The following commit(s) were added to refs/heads/master by this push:
     new 4708701  [FLINK-17684] [e2e] Enable E2E tests in Travis builds
4708701 is described below

commit 47087012560a1a783485dc8d9d8c5c7ae42a5ca9
Author: Tzu-Li (Gordon) Tai <tz...@apache.org>
AuthorDate: Thu May 14 13:57:53 2020 +0800

    [FLINK-17684] [e2e] Enable E2E tests in Travis builds
    
    This closes #109.
---
 .travis.yml | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index 558dbf1..04e58fd 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -17,13 +17,16 @@ dist: xenial
 
 language: java
 
+services:
+  - docker
+
 jobs:
   include:
     - if: type in (pull_request, push)
       jdk: "openjdk8"
-      script: mvn clean install
+      script: mvn clean install -Prun-e2e-tests
       name: build - jdk8
     - if: type in (pull_request, push)
       jdk: "openjdk11"
-      script: mvn clean install
+      script: mvn clean install -Prun-e2e-tests
       name: build - jdk11