From 5ba71f81b5f66651690b6f82dbdcbddca88f9a1c Mon Sep 17 00:00:00 2001 From: Matthias Volk Date: Wed, 18 Apr 2018 17:52:16 +0200 Subject: [PATCH] Travis: test against stable version of Storm as well --- .travis.yml | 25 +++++++++++++++++++++++-- 1 file changed, 23 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 4c79c06..6972611 100644 --- a/.travis.yml +++ b/.travis.yml @@ -25,7 +25,7 @@ notifications: # jobs: include: - # docker storm:latest + # Docker Storm master - os: linux compiler: gcc env: TASK=Test CONFIG=Release DOCKER=storm:travis PYTHON=python3 @@ -33,7 +33,7 @@ jobs: travis/install_linux.sh script: travis/build.sh - # docker storm-debug:latest + # Docker Storm master in debug mode - os: linux compiler: gcc env: TASK=Test CONFIG=Debug DOCKER=storm:travis-debug PYTHON=python3 @@ -41,6 +41,22 @@ jobs: travis/install_linux.sh script: travis/build.sh + # Docker Storm stable + - os: linux + compiler: gcc + env: TASK=Test CONFIG=Release DOCKER=storm:1.2.1 PYTHON=python3 + install: + travis/install_linux.sh + script: + travis/build.sh + # Docker Storm stable in debug mode + - os: linux + compiler: gcc + env: TASK=Test CONFIG=Debug DOCKER=storm:1.2.1-debug PYTHON=python3 + install: + travis/install_linux.sh + script: + travis/build.sh # Documentation - os: linux compiler: gcc @@ -59,3 +75,8 @@ jobs: on: branch: master +allow_failures: + - os: linux + env: TASK=Test CONFIG=Release DOCKER=storm:1.2.1 PYTHON=python3 + - os: linux + env: TASK=Test CONFIG=Debug DOCKER=storm:1.2.1-debug PYTHON=python3