From 3e6ef37b28c085e969cf80779391ea64030434a7 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Tue, 7 Jun 2016 00:58:58 +0300 Subject: Move most slow deheader ci jobs into first deheader jobs. --- .gitlab-ci.yml | 336 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 168 insertions(+), 168 deletions(-) (limited to '.gitlab-ci.yml') diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7c7e96095..bc1fe09f7 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -713,6 +713,174 @@ gcc-5_tarball: # deheader default +deheader_gui_windows_cpp: + stage: build + script: + - export FLAGS="-DENABLE_LIBXML -DENABLE_MEM_DEBUG -DUSE_OPENGL -DUSE_X11 -DTMWA_SUPPORT -DEATHENA_SUPPORT" + - export INCLUDES="-I/usr/include/SDL -I/usr/include/libxml2" + - export CXX=g++-5 + - export LOGFILE=deheader.log + - ./tools/ci/jobs/deheader.sh + - find ./src/gui/windows -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; + - ./tools/ci/jobs/deheader2.sh + image: debian:unstable + tags: + - docker + +deheader_sdl2_gui_windows_cpp: + stage: build + script: + - export FLAGS="-DENABLE_LIBXML -DENABLE_MEM_DEBUG -DUSE_OPENGL -DUSE_X11 -DTMWA_SUPPORT -DEATHENA_SUPPORT -DUSE_SDL2" + - export INCLUDES="-I/usr/include/SDL2 -I/usr/include/libxml2" + - export CXX=g++-5 + - export LOGFILE=deheader.log + - ./tools/ci/jobs/deheader_sdl2.sh + - find ./src/gui/windows -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; + - ./tools/ci/jobs/deheader2.sh + image: debian:unstable + tags: + - docker + +deheader_gui_windows_withoutopengl_cpp: + stage: build + script: + - export FLAGS="-DENABLE_LIBXML -DENABLE_MEM_DEBUG -DUSE_X11 -DTMWA_SUPPORT -DEATHENA_SUPPORT" + - export INCLUDES="-I/usr/include/SDL -I/usr/include/libxml2" + - export CXX=g++-5 + - export LOGFILE=deheader.log + - ./tools/ci/jobs/deheader.sh + - find ./src/gui/windows -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; + - ./tools/ci/jobs/deheader2.sh + image: debian:unstable + tags: + - docker + +deheader_sdl2_gui_windows_withoutopengl_cpp: + stage: build + script: + - export FLAGS="-DENABLE_LIBXML -DENABLE_MEM_DEBUG -DUSE_X11 -DTMWA_SUPPORT -DEATHENA_SUPPORT -DUSE_SDL2" + - export INCLUDES="-I/usr/include/SDL2 -I/usr/include/libxml2" + - export CXX=g++-5 + - export LOGFILE=deheader.log + - ./tools/ci/jobs/deheader_sdl2.sh + - find ./src/gui/windows -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; + - ./tools/ci/jobs/deheader2.sh + image: debian:unstable + tags: + - docker + +deheader_gui_widgets_cpp: + stage: build + script: + - export FLAGS="-DENABLE_LIBXML -DENABLE_MEM_DEBUG -DUSE_OPENGL -DUSE_X11 -DTMWA_SUPPORT -DEATHENA_SUPPORT" + - export INCLUDES="-I/usr/include/SDL -I/usr/include/libxml2" + - export CXX=g++-5 + - export LOGFILE=deheader.log + - ./tools/ci/jobs/deheader.sh + - find ./src/gui/widgets -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; + - ./tools/ci/jobs/deheader2.sh + image: debian:unstable + tags: + - docker + +deheader_sdl2_gui_widgets_cpp: + stage: build + script: + - export FLAGS="-DENABLE_LIBXML -DENABLE_MEM_DEBUG -DUSE_OPENGL -DUSE_X11 -DTMWA_SUPPORT -DEATHENA_SUPPORT -DUSE_SDL2" + - export INCLUDES="-I/usr/include/SDL2 -I/usr/include/libxml2" + - export CXX=g++-5 + - export LOGFILE=deheader.log + - ./tools/ci/jobs/deheader_sdl2.sh + - find ./src/gui/widgets -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; + - ./tools/ci/jobs/deheader2.sh + image: debian:unstable + tags: + - docker + +deheader_gui_widgets_withoutopengl_cpp: + stage: build + script: + - export FLAGS="-DENABLE_LIBXML -DENABLE_MEM_DEBUG -DUSE_X11 -DTMWA_SUPPORT -DEATHENA_SUPPORT" + - export INCLUDES="-I/usr/include/SDL -I/usr/include/libxml2" + - export CXX=g++-5 + - export LOGFILE=deheader.log + - ./tools/ci/jobs/deheader.sh + - find ./src/gui/widgets -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; + - ./tools/ci/jobs/deheader2.sh + image: debian:unstable + tags: + - docker + +deheader_sdl2_gui_widgets_withoutopengl_cpp: + stage: build + script: + - export FLAGS="-DENABLE_LIBXML -DENABLE_MEM_DEBUG -DUSE_X11 -DTMWA_SUPPORT -DEATHENA_SUPPORT -DUSE_SDL2" + - export INCLUDES="-I/usr/include/SDL2 -I/usr/include/libxml2" + - export CXX=g++-5 + - export LOGFILE=deheader.log + - ./tools/ci/jobs/deheader_sdl2.sh + - find ./src/gui/widgets -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; + - ./tools/ci/jobs/deheader2.sh + image: debian:unstable + tags: + - docker + +deheader_gui_models_cpp: + stage: build + script: + - export FLAGS="-DENABLE_LIBXML -DENABLE_MEM_DEBUG -DUSE_OPENGL -DUSE_X11 -DTMWA_SUPPORT -DEATHENA_SUPPORT" + - export INCLUDES="-I/usr/include/SDL -I/usr/include/libxml2" + - export CXX=g++-5 + - export LOGFILE=deheader.log + - ./tools/ci/jobs/deheader.sh + - find ./src/gui/models -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; + - ./tools/ci/jobs/deheader2.sh + image: debian:unstable + tags: + - docker + +deheader_sdl2_gui_models_cpp: + stage: build + script: + - export FLAGS="-DENABLE_LIBXML -DENABLE_MEM_DEBUG -DUSE_OPENGL -DUSE_X11 -DTMWA_SUPPORT -DEATHENA_SUPPORT -DUSE_SDL2" + - export INCLUDES="-I/usr/include/SDL2 -I/usr/include/libxml2" + - export CXX=g++-5 + - export LOGFILE=deheader.log + - ./tools/ci/jobs/deheader_sdl2.sh + - find ./src/gui/models -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; + - ./tools/ci/jobs/deheader2.sh + image: debian:unstable + tags: + - docker + +deheader_gui_models_withoutopengl_cpp: + stage: build + script: + - export FLAGS="-DENABLE_LIBXML -DENABLE_MEM_DEBUG -DUSE_X11 -DTMWA_SUPPORT -DEATHENA_SUPPORT" + - export INCLUDES="-I/usr/include/SDL -I/usr/include/libxml2" + - export CXX=g++-5 + - export LOGFILE=deheader.log + - ./tools/ci/jobs/deheader.sh + - find ./src/gui/models -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; + - ./tools/ci/jobs/deheader2.sh + image: debian:unstable + tags: + - docker + +deheader_sdl2_gui_models_withoutopengl_cpp: + stage: build + script: + - export FLAGS="-DENABLE_LIBXML -DENABLE_MEM_DEBUG -DUSE_X11 -DTMWA_SUPPORT -DEATHENA_SUPPORT -DUSE_SDL2" + - export INCLUDES="-I/usr/include/SDL2 -I/usr/include/libxml2" + - export CXX=g++-5 + - export LOGFILE=deheader.log + - ./tools/ci/jobs/deheader_sdl2.sh + - find ./src/gui/models -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; + - ./tools/ci/jobs/deheader2.sh + image: debian:unstable + tags: + - docker + deheader_actions_cpp: stage: build script: @@ -867,20 +1035,6 @@ deheader_gui_fonts_h: tags: - docker -deheader_gui_models_cpp: - stage: build - script: - - export FLAGS="-DENABLE_LIBXML -DENABLE_MEM_DEBUG -DUSE_OPENGL -DUSE_X11 -DTMWA_SUPPORT -DEATHENA_SUPPORT" - - export INCLUDES="-I/usr/include/SDL -I/usr/include/libxml2" - - export CXX=g++-5 - - export LOGFILE=deheader.log - - ./tools/ci/jobs/deheader.sh - - find ./src/gui/models -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - - ./tools/ci/jobs/deheader2.sh - image: debian:unstable - tags: - - docker - deheader_gui_models_h: stage: build script: @@ -951,20 +1105,6 @@ deheader_gui_shortcut_h: tags: - docker -deheader_gui_widgets_cpp: - stage: build - script: - - export FLAGS="-DENABLE_LIBXML -DENABLE_MEM_DEBUG -DUSE_OPENGL -DUSE_X11 -DTMWA_SUPPORT -DEATHENA_SUPPORT" - - export INCLUDES="-I/usr/include/SDL -I/usr/include/libxml2" - - export CXX=g++-5 - - export LOGFILE=deheader.log - - ./tools/ci/jobs/deheader.sh - - find ./src/gui/widgets -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - - ./tools/ci/jobs/deheader2.sh - image: debian:unstable - tags: - - docker - deheader_gui_widgets_h: stage: build script: @@ -979,20 +1119,6 @@ deheader_gui_widgets_h: tags: - docker -deheader_gui_windows_cpp: - stage: build - script: - - export FLAGS="-DENABLE_LIBXML -DENABLE_MEM_DEBUG -DUSE_OPENGL -DUSE_X11 -DTMWA_SUPPORT -DEATHENA_SUPPORT" - - export INCLUDES="-I/usr/include/SDL -I/usr/include/libxml2" - - export CXX=g++-5 - - export LOGFILE=deheader.log - - ./tools/ci/jobs/deheader.sh - - find ./src/gui/windows -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - - ./tools/ci/jobs/deheader2.sh - image: debian:unstable - tags: - - docker - deheader_gui_windows_h: stage: build script: @@ -1597,20 +1723,6 @@ deheader_sdl2_gui_fonts_h: tags: - docker -deheader_sdl2_gui_models_cpp: - stage: build - script: - - export FLAGS="-DENABLE_LIBXML -DENABLE_MEM_DEBUG -DUSE_OPENGL -DUSE_X11 -DTMWA_SUPPORT -DEATHENA_SUPPORT -DUSE_SDL2" - - export INCLUDES="-I/usr/include/SDL2 -I/usr/include/libxml2" - - export CXX=g++-5 - - export LOGFILE=deheader.log - - ./tools/ci/jobs/deheader_sdl2.sh - - find ./src/gui/models -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - - ./tools/ci/jobs/deheader2.sh - image: debian:unstable - tags: - - docker - deheader_sdl2_gui_models_h: stage: build script: @@ -1681,20 +1793,6 @@ deheader_sdl2_gui_shortcut_h: tags: - docker -deheader_sdl2_gui_widgets_cpp: - stage: build - script: - - export FLAGS="-DENABLE_LIBXML -DENABLE_MEM_DEBUG -DUSE_OPENGL -DUSE_X11 -DTMWA_SUPPORT -DEATHENA_SUPPORT -DUSE_SDL2" - - export INCLUDES="-I/usr/include/SDL2 -I/usr/include/libxml2" - - export CXX=g++-5 - - export LOGFILE=deheader.log - - ./tools/ci/jobs/deheader_sdl2.sh - - find ./src/gui/widgets -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - - ./tools/ci/jobs/deheader2.sh - image: debian:unstable - tags: - - docker - deheader_sdl2_gui_widgets_h: stage: build script: @@ -1709,20 +1807,6 @@ deheader_sdl2_gui_widgets_h: tags: - docker -deheader_sdl2_gui_windows_cpp: - stage: build - script: - - export FLAGS="-DENABLE_LIBXML -DENABLE_MEM_DEBUG -DUSE_OPENGL -DUSE_X11 -DTMWA_SUPPORT -DEATHENA_SUPPORT -DUSE_SDL2" - - export INCLUDES="-I/usr/include/SDL2 -I/usr/include/libxml2" - - export CXX=g++-5 - - export LOGFILE=deheader.log - - ./tools/ci/jobs/deheader_sdl2.sh - - find ./src/gui/windows -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - - ./tools/ci/jobs/deheader2.sh - image: debian:unstable - tags: - - docker - deheader_sdl2_gui_windows_h: stage: build script: @@ -2327,20 +2411,6 @@ deheader_gui_fonts_withoutopengl_h: tags: - docker -deheader_gui_models_withoutopengl_cpp: - stage: build - script: - - export FLAGS="-DENABLE_LIBXML -DENABLE_MEM_DEBUG -DUSE_X11 -DTMWA_SUPPORT -DEATHENA_SUPPORT" - - export INCLUDES="-I/usr/include/SDL -I/usr/include/libxml2" - - export CXX=g++-5 - - export LOGFILE=deheader.log - - ./tools/ci/jobs/deheader.sh - - find ./src/gui/models -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - - ./tools/ci/jobs/deheader2.sh - image: debian:unstable - tags: - - docker - deheader_gui_models_withoutopengl_h: stage: build script: @@ -2411,20 +2481,6 @@ deheader_gui_shortcut_withoutopengl_h: tags: - docker -deheader_gui_widgets_withoutopengl_cpp: - stage: build - script: - - export FLAGS="-DENABLE_LIBXML -DENABLE_MEM_DEBUG -DUSE_X11 -DTMWA_SUPPORT -DEATHENA_SUPPORT" - - export INCLUDES="-I/usr/include/SDL -I/usr/include/libxml2" - - export CXX=g++-5 - - export LOGFILE=deheader.log - - ./tools/ci/jobs/deheader.sh - - find ./src/gui/widgets -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - - ./tools/ci/jobs/deheader2.sh - image: debian:unstable - tags: - - docker - deheader_gui_widgets_withoutopengl_h: stage: build script: @@ -2439,20 +2495,6 @@ deheader_gui_widgets_withoutopengl_h: tags: - docker -deheader_gui_windows_withoutopengl_cpp: - stage: build - script: - - export FLAGS="-DENABLE_LIBXML -DENABLE_MEM_DEBUG -DUSE_X11 -DTMWA_SUPPORT -DEATHENA_SUPPORT" - - export INCLUDES="-I/usr/include/SDL -I/usr/include/libxml2" - - export CXX=g++-5 - - export LOGFILE=deheader.log - - ./tools/ci/jobs/deheader.sh - - find ./src/gui/windows -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - - ./tools/ci/jobs/deheader2.sh - image: debian:unstable - tags: - - docker - deheader_gui_windows_withoutopengl_h: stage: build script: @@ -3057,20 +3099,6 @@ deheader_sdl2_gui_fonts_withoutopengl_h: tags: - docker -deheader_sdl2_gui_models_withoutopengl_cpp: - stage: build - script: - - export FLAGS="-DENABLE_LIBXML -DENABLE_MEM_DEBUG -DUSE_X11 -DTMWA_SUPPORT -DEATHENA_SUPPORT -DUSE_SDL2" - - export INCLUDES="-I/usr/include/SDL2 -I/usr/include/libxml2" - - export CXX=g++-5 - - export LOGFILE=deheader.log - - ./tools/ci/jobs/deheader_sdl2.sh - - find ./src/gui/models -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - - ./tools/ci/jobs/deheader2.sh - image: debian:unstable - tags: - - docker - deheader_sdl2_gui_models_withoutopengl_h: stage: build script: @@ -3141,20 +3169,6 @@ deheader_sdl2_gui_shortcut_withoutopengl_h: tags: - docker -deheader_sdl2_gui_widgets_withoutopengl_cpp: - stage: build - script: - - export FLAGS="-DENABLE_LIBXML -DENABLE_MEM_DEBUG -DUSE_X11 -DTMWA_SUPPORT -DEATHENA_SUPPORT -DUSE_SDL2" - - export INCLUDES="-I/usr/include/SDL2 -I/usr/include/libxml2" - - export CXX=g++-5 - - export LOGFILE=deheader.log - - ./tools/ci/jobs/deheader_sdl2.sh - - find ./src/gui/widgets -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - - ./tools/ci/jobs/deheader2.sh - image: debian:unstable - tags: - - docker - deheader_sdl2_gui_widgets_withoutopengl_h: stage: build script: @@ -3169,20 +3183,6 @@ deheader_sdl2_gui_widgets_withoutopengl_h: tags: - docker -deheader_sdl2_gui_windows_withoutopengl_cpp: - stage: build - script: - - export FLAGS="-DENABLE_LIBXML -DENABLE_MEM_DEBUG -DUSE_X11 -DTMWA_SUPPORT -DEATHENA_SUPPORT -DUSE_SDL2" - - export INCLUDES="-I/usr/include/SDL2 -I/usr/include/libxml2" - - export CXX=g++-5 - - export LOGFILE=deheader.log - - ./tools/ci/jobs/deheader_sdl2.sh - - find ./src/gui/windows -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - - ./tools/ci/jobs/deheader2.sh - image: debian:unstable - tags: - - docker - deheader_sdl2_gui_windows_withoutopengl_h: stage: build script: -- cgit v1.2.3-60-g2f50