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