From 62396eadb503169a29c3982db2da9e659b115acd Mon Sep 17 00:00:00 2001 From: TheSnoozer Date: Thu, 28 Sep 2017 22:05:49 -0400 Subject: [PATCH] Introduce new travis beta-feature of Build Stages (https://docs.travis-ci.com/user/build-stages/) which allows to group the build into different categories (similar to a pipeline) - currently the build is configured so it will only execute the second stage (Intergration Test) with all the various maven calls if the previous stage (normal test) has been passed - basically this means we don't need to run the full integration cycle if the integration tests already fail --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 3e3c9e14..bfa6b5a1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,7 +8,8 @@ jdk: matrix: include: - - jdk: openjdk7 + - stage: Integration Test + jdk: openjdk7 env: CUSTOM_MVN_VERION="3.0" - jdk: openjdk7 env: CUSTOM_MVN_VERION="3.0.5"