diff --git a/.travis.yml b/.travis.yml index ee40491cb..a9b1577af 100644 --- a/.travis.yml +++ b/.travis.yml @@ -198,57 +198,6 @@ jobs: # osx - stage: Build (4th run) - os: osx - compiler: clang - env: CONFIG=DefaultDebug COMPILER=clang STL=libc++ - install: - - travis/install_osx.sh - script: - - travis/build.sh Build4 - after_failure: - - find build -iname '*err*.log' -type f -print -exec cat {} \; - - stage: Build (4th run) - os: osx - compiler: clang - env: CONFIG=DefaultRelease COMPILER=clang STL=libc++ - install: - - travis/install_osx.sh - script: - - travis/build.sh Build4 - after_failure: - - find build -iname '*err*.log' -type f -print -exec cat {} \; - # ubuntu-16.10 - - stage: Build (4th run) - os: linux - compiler: gcc - env: CONFIG=DefaultDebug LINUX=ubuntu-16.10 COMPILER=gcc - install: - - travis/install_linux.sh - script: - - travis/build.sh Build4 - before_cache: - - docker cp storm:/storm/. . - after_failure: - - find build -iname '*err*.log' -type f -print -exec cat {} \; - - stage: Build (4th run) - os: linux - compiler: gcc - env: CONFIG=DefaultRelease LINUX=ubuntu-16.10 COMPILER=gcc - install: - - travis/install_linux.sh - script: - - travis/build.sh Build4 - before_cache: - - docker cp storm:/storm/. . - after_failure: - - find build -iname '*err*.log' -type f -print -exec cat {} \; - - ### - # Stage: Build (5th run) - ### - - # osx - - stage: Build (5th run) os: osx compiler: clang env: CONFIG=DefaultDebug COMPILER=clang STL=libc++ @@ -258,7 +207,7 @@ jobs: - travis/build.sh BuildLast after_failure: - find build -iname '*err*.log' -type f -print -exec cat {} \; - - stage: Build (5th run) + - stage: Build (4th run) os: osx compiler: clang env: CONFIG=DefaultRelease COMPILER=clang STL=libc++ @@ -269,7 +218,7 @@ jobs: after_failure: - find build -iname '*err*.log' -type f -print -exec cat {} \; # ubuntu-16.10 - - stage: Build (5th run) + - stage: Build (4th run) os: linux compiler: gcc env: CONFIG=DefaultDebug LINUX=ubuntu-16.10 COMPILER=gcc @@ -281,7 +230,7 @@ jobs: - docker cp storm:/storm/. . after_failure: - find build -iname '*err*.log' -type f -print -exec cat {} \; - - stage: Build (5th run) + - stage: Build (4th run) os: linux compiler: gcc env: CONFIG=DefaultRelease LINUX=ubuntu-16.10 COMPILER=gcc diff --git a/travis/generate_travis.py b/travis/generate_travis.py index 13d91e691..9b86cd19a 100644 --- a/travis/generate_travis.py +++ b/travis/generate_travis.py @@ -23,8 +23,7 @@ stages = [ ("Build (1st run)", "Build1"), ("Build (2nd run)", "Build2"), ("Build (3rd run)", "Build3"), - ("Build (4th run)", "Build4"), - ("Build (5th run)", "BuildLast"), + ("Build (4th run)", "BuildLast"), ("Test all", "TestAll"), ]