From b9c5f186f92469a4d0866a83180d59f3587c0448 Mon Sep 17 00:00:00 2001 From: "Z.J. van de Weg" Date: Sat, 10 Sep 2016 13:48:49 +0200 Subject: Remove duplication on artifacts for CI jobs --- .gitlab-ci.yml | 1705 ++++++++++---------------------------------------------- 1 file changed, 298 insertions(+), 1407 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e0fdc0f92..17c21fbc6 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -7,6 +7,13 @@ stages: before_script: - uname -a +.log-failed-jobs: &log-failed-jobs + artifacts: + paths: + - logs + when: on_failure + expire_in: 3 week + # pre build clang-3.9: @@ -14,22 +21,14 @@ clang-3.9: script: - ./tools/ci/jobs/clang39.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs gcc-5_c++11_i386: stage: prebuild script: - ./tools/ci/jobs/gcc5_c++11.sh image: vicamo/debian:sid-i386 - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs tags: - docker @@ -38,22 +37,14 @@ gcc-6: script: - ./tools/ci/jobs/gcc6.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs gcc-6-i386: stage: prebuild script: - ./tools/ci/jobs/gcc6.sh image: vicamo/debian:sid-i386 - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs tags: - docker @@ -62,77 +53,49 @@ gcc-4.4: script: - ./tools/ci/jobs/gcc44.sh image: debian:oldstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs mplint_po: stage: prebuild script: - ./tools/ci/jobs/mplint.sh po image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs mplint_src: stage: prebuild script: - ./tools/ci/jobs/mplint.sh src image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs mplint_data: stage: prebuild script: - ./tools/ci/jobs/mplint.sh data image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs cpplint: stage: prebuild script: - ./tools/ci/jobs/cpplint.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs gcc-5_h_all: stage: prebuild script: - ./tools/ci/jobs/gcc5_h.sh -std=c++0x -DDEBUGBUILD -DTMWA_SUPPORT -DENABLE_NLS -DUSE_OPENGL -DENABLE_LIBXML image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs gcc-5_h_all_i386: stage: prebuild script: - ./tools/ci/jobs/gcc5_h.sh -std=c++0x -DDEBUGBUILD -DTMWA_SUPPORT -DENABLE_NLS -DUSE_OPENGL -DENABLE_LIBXML image: vicamo/debian:sid-i386 - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs tags: - docker @@ -141,22 +104,14 @@ pngcheck: script: - ./tools/ci/jobs/pngcheck.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs icccheck: stage: prebuild script: - ./tools/ci/jobs/imagemagiccheck.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs # tests @@ -165,11 +120,7 @@ gcc-5_sanitize_tests: script: - ./tools/ci/jobs/gcc5_sanitize_tests.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs tags: - docker @@ -178,11 +129,7 @@ gcc-5_sanitize_tests_i386: script: - ./tools/ci/jobs/gcc5_sanitize_tests.sh image: vicamo/debian:sid-i386 - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs tags: - docker @@ -191,11 +138,7 @@ gcc-5_tests: script: - ./tools/ci/jobs/gcc5_tests.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs tags: - docker @@ -204,11 +147,7 @@ gcc-5_tests_i386: script: - ./tools/ci/jobs/gcc5_tests.sh image: vicamo/debian:sid-i386 - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs tags: - docker @@ -217,11 +156,7 @@ gcc-6_tests: script: - ./tools/ci/jobs/gcc6_tests.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs tags: - docker @@ -230,11 +165,7 @@ gcc-6_tests_i386: script: - ./tools/ci/jobs/gcc6_tests.sh image: vicamo/debian:sid-i386 - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs tags: - docker @@ -243,11 +174,7 @@ gcc-5_sdl2_tests: script: - ./tools/ci/jobs/gcc5_sdl2_tests.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs tags: - docker @@ -256,11 +183,7 @@ gcc-5_sdl2_tests_i386: script: - ./tools/ci/jobs/gcc5_sdl2_tests.sh image: vicamo/debian:sid-i386 - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs tags: - docker @@ -269,22 +192,14 @@ gcc-6_lto: script: - ./tools/ci/jobs/gcc6_lto.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs gcc-6_lto_i386: stage: build script: - ./tools/ci/jobs/gcc6_lto.sh image: vicamo/debian:sid-i386 - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs tags: - docker @@ -295,11 +210,7 @@ gcc-4.4_i386: script: - ./tools/ci/jobs/gcc44.sh image: vicamo/debian:oldstable-i386 - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs tags: - docker @@ -308,11 +219,7 @@ gcc-4.5: script: - ./tools/ci/jobs/gcc45.sh image: ubuntu:12.04 - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs tags: - docker @@ -321,22 +228,14 @@ gcc-4.6: script: - ./tools/ci/jobs/gcc46.sh image: debian:oldstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs gcc-4.6_i386: stage: build script: - ./tools/ci/jobs/gcc46.sh image: vicamo/debian:oldstable-i386 - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs tags: - docker @@ -345,11 +244,7 @@ gcc-4.7: script: - ./tools/ci/jobs/gcc47.sh image: debian:oldstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs tags: - docker @@ -358,11 +253,7 @@ gcc-4.7_i386: script: - ./tools/ci/jobs/gcc47.sh image: vicamo/debian:oldstable-i386 - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs tags: - docker @@ -371,22 +262,14 @@ gcc-4.8: script: - ./tools/ci/jobs/gcc48.sh image: debian:stable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs gcc-4.8_i386: stage: build script: - ./tools/ci/jobs/gcc48.sh image: vicamo/debian:stable-i386 - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs tags: - docker @@ -395,11 +278,7 @@ clang-3.0: script: - ./tools/ci/jobs/clang3.sh image: debian:oldstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs tags: - docker @@ -408,11 +287,7 @@ clang-3.0_i386: script: - ./tools/ci/jobs/clang3.sh image: vicamo/debian:oldstable-i386 - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs tags: - docker @@ -421,22 +296,14 @@ clang-3.4: script: - ./tools/ci/jobs/clang34.sh image: debian:stable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs clang-3.4_i386: stage: build script: - ./tools/ci/jobs/clang34.sh image: vicamo/debian:stable-i386 - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs tags: - docker @@ -445,22 +312,14 @@ clang-3.5: script: - ./tools/ci/jobs/clang35.sh image: debian:stable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs clang-3.5_i386: stage: build script: - ./tools/ci/jobs/clang35.sh image: vicamo/debian:stable-i386 - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs tags: - docker @@ -469,22 +328,14 @@ clang-3.5_i386: script: - ./tools/ci/jobs/clang39.sh_c++11.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs .clang-3.9_c++11_i386: stage: build script: - ./tools/ci/jobs/clang39.sh_c++11.sh image: vicamo/debian:sid-i386 - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs tags: - docker @@ -493,33 +344,21 @@ gcc-4.8_c++11: script: - ./tools/ci/jobs/gcc48_c++11.sh image: debian:stable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs gcc-4.9: stage: build script: - ./tools/ci/jobs/gcc49.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs gcc-4.9_i386: stage: build script: - ./tools/ci/jobs/gcc49.sh image: vicamo/debian:sid-i386 - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs tags: - docker @@ -528,22 +367,14 @@ gcc-4.9_c++11: script: - ./tools/ci/jobs/gcc49_c++11.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs cmake_gcc-4.9: stage: build script: - ./tools/ci/jobs/cmake_gcc49.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs tags: - docker @@ -552,55 +383,35 @@ gcc-5: script: - ./tools/ci/jobs/gcc5.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs gcc-5_c++11: stage: build script: - ./tools/ci/jobs/gcc5_c++11.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs gcc-5_sdl2: stage: build script: - ./tools/ci/jobs/gcc5_sdl2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs gcc-5_sdl2_c++11: stage: build script: - ./tools/ci/jobs/gcc5_sdl2_c++11.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs gcc-5_sdl2_c++11_i386: stage: build script: - ./tools/ci/jobs/gcc5_sdl2_c++11.sh image: vicamo/debian:sid-i386 - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs tags: - docker @@ -609,22 +420,14 @@ gcc-snapshot: script: - ./tools/ci/jobs/gccsnapshot.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs gcc-snapshot_i386: stage: build script: - ./tools/ci/jobs/gccsnapshot.sh image: vicamo/debian:sid-i386 - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs tags: - docker @@ -633,22 +436,14 @@ gcc-snapshot_sdl2: script: - ./tools/ci/jobs/gccsnapshot_sdl2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs gcc-snapshot_sdl2_i386: stage: build script: - ./tools/ci/jobs/gccsnapshot_sdl2.sh image: vicamo/debian:sid-i386 - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs tags: - docker @@ -657,33 +452,21 @@ gcc-5_sanitize: script: - ./tools/ci/jobs/gcc5_sanitize.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs gcc-6_sanitize: stage: build script: - ./tools/ci/jobs/gcc6_sanitize.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs gcc-6_sanitize_i386: stage: build script: - ./tools/ci/jobs/gcc6_sanitize.sh image: vicamo/debian:sid-i386 - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs tags: - docker @@ -692,121 +475,77 @@ gcc_eathena: script: - ./tools/ci/jobs/gcc6.sh --without-opengl --disable-tmwa image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs gcc_without_opengl: stage: build script: - ./tools/ci/jobs/gcc5.sh --without-opengl image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs gcc_cilkplus: stage: build script: - ./tools/ci/jobs/gcc49.sh --enable-cilkplus image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs gcc_eathena_opengl: stage: build script: - ./tools/ci/jobs/gcc6.sh --with-opengl --disable-tmwa image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs gcc_eathena_opengl_sdl2: stage: build script: - ./tools/ci/jobs/gcc5_sdl2.sh --with-opengl --disable-tmwa image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs gcc_eathena_sdl2: stage: build script: - ./tools/ci/jobs/gcc5_sdl2.sh --without-opengl --disable-tmwa image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs gcc_portable: stage: build script: - ./tools/ci/jobs/gcc6.sh --with-opengl --enable-tmwa --enable-portable=yes image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs gcc_eathena_c++11: stage: build script: - ./tools/ci/jobs/gcc5_c++11.sh --without-opengl --disable-tmwa image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs gcc_eathena_sdl2_c++11: stage: build script: - ./tools/ci/jobs/gcc5_sdl2_c++11.sh --without-opengl --disable-tmwa image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs clang-3.9_sdl2: stage: build script: - ./tools/ci/jobs/clang39_sdl2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs gcc-6_no_asserts: stage: build script: - ./tools/ci/jobs/gcc6.sh --disable-asserts image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs # different tools @@ -815,33 +554,21 @@ gcc-5_h_eathena_tmwa: script: - ./tools/ci/jobs/gcc5_h.sh -std=c++0x -DDEBUGBUILD -DTMWA_SUPPORT -DENABLE_LIBXML image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs gcc-5_h_pugi_all: stage: build script: - ./tools/ci/jobs/gcc5_h_pugi.sh -std=c++0x -DDEBUGBUILD -DTMWA_SUPPORT -DENABLE_NLS -DUSE_OPENGL -DENABLE_PUGIXML image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs gcc-5_tarball: stage: build script: - ./tools/ci/jobs/gcc5_tarball.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs # deheader default @@ -856,11 +583,7 @@ deheader_gui_windows_cpp: - find ./src/gui/windows -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_gui_windows_cpp: stage: build @@ -873,11 +596,7 @@ deheader_sdl2_gui_windows_cpp: - find ./src/gui/windows -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_gui_windows_withoutopengl_cpp: stage: build @@ -890,11 +609,7 @@ deheader_gui_windows_withoutopengl_cpp: - find ./src/gui/windows -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_gui_windows_withoutopengl_cpp: stage: build @@ -907,11 +622,7 @@ deheader_sdl2_gui_windows_withoutopengl_cpp: - find ./src/gui/windows -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_gui_widgets_cpp: stage: build @@ -924,11 +635,7 @@ deheader_gui_widgets_cpp: - find ./src/gui/widgets -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_gui_widgets_cpp: stage: build @@ -941,11 +648,7 @@ deheader_sdl2_gui_widgets_cpp: - find ./src/gui/widgets -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_gui_widgets_withoutopengl_cpp: stage: build @@ -958,11 +661,7 @@ deheader_gui_widgets_withoutopengl_cpp: - find ./src/gui/widgets -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_gui_widgets_withoutopengl_cpp: stage: build @@ -971,15 +670,11 @@ deheader_sdl2_gui_widgets_withoutopengl_cpp: - export INCLUDES="-I/usr/include/SDL2 -I/usr/include/libxml2" - export CXX=g++-5 - export LOGFILE=logs/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 - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + - ./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 + <<: *log-failed-jobs deheader_gui_models_cpp: stage: build @@ -992,11 +687,7 @@ deheader_gui_models_cpp: - find ./src/gui/models -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_gui_models_cpp: stage: build @@ -1009,11 +700,7 @@ deheader_sdl2_gui_models_cpp: - find ./src/gui/models -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_gui_models_withoutopengl_cpp: stage: build @@ -1026,11 +713,7 @@ deheader_gui_models_withoutopengl_cpp: - find ./src/gui/models -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_gui_models_withoutopengl_cpp: stage: build @@ -1043,11 +726,7 @@ deheader_sdl2_gui_models_withoutopengl_cpp: - find ./src/gui/models -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_actions_cpp: stage: build @@ -1060,11 +739,7 @@ deheader_actions_cpp: - find ./src/actions -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_actions_h: stage: build @@ -1077,11 +752,7 @@ deheader_actions_h: - find ./src/actions -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_being_cpp: stage: build @@ -1094,11 +765,7 @@ deheader_being_cpp: - find ./src/being -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_being_h: stage: build @@ -1111,11 +778,7 @@ deheader_being_h: - find ./src/being -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_const_h: stage: build @@ -1128,11 +791,7 @@ deheader_const_h: - find ./src/const -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_dyetool_cpp: stage: build @@ -1145,11 +804,7 @@ deheader_dyetool_cpp: - find ./src/dyetool -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_dyetool_h: stage: build @@ -1162,11 +817,7 @@ deheader_dyetool_h: - find ./src/dyetool -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_enums_h: stage: build @@ -1179,11 +830,7 @@ deheader_enums_h: - find ./src/enums -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_events_h: stage: build @@ -1196,11 +843,7 @@ deheader_events_h: - find ./src/events -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_gui_fonts_cpp: stage: build @@ -1213,11 +856,7 @@ deheader_gui_fonts_cpp: - find ./src/gui/fonts -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_gui_fonts_h: stage: build @@ -1230,11 +869,7 @@ deheader_gui_fonts_h: - find ./src/gui/fonts -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_gui_models_h: stage: build @@ -1247,11 +882,7 @@ deheader_gui_models_h: - find ./src/gui/models -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_gui_popups_cpp: stage: build @@ -1264,11 +895,7 @@ deheader_gui_popups_cpp: - find ./src/gui/popups -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_gui_popups_h: stage: build @@ -1281,11 +908,7 @@ deheader_gui_popups_h: - find ./src/gui/popups -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_gui_shortcut_cpp: stage: build @@ -1298,11 +921,7 @@ deheader_gui_shortcut_cpp: - find ./src/gui/shortcut -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_gui_shortcut_h: stage: build @@ -1315,11 +934,7 @@ deheader_gui_shortcut_h: - find ./src/gui/shortcut -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_gui_widgets_h: stage: build @@ -1332,11 +947,7 @@ deheader_gui_widgets_h: - find ./src/gui/widgets -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_gui_windows_h: stage: build @@ -1349,11 +960,7 @@ deheader_gui_windows_h: - find ./src/gui/windows -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_gui_cpp: stage: build @@ -1366,11 +973,7 @@ deheader_gui_cpp: - find ./src/gui -type f -name "*.cpp" ! -path "./src/gui/*/*" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_gui_h: stage: build @@ -1383,11 +986,7 @@ deheader_gui_h: - find ./src/gui -type f -name "*.h" ! -path "./src/gui/*/*" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_input_cpp: stage: build @@ -1400,11 +999,7 @@ deheader_input_cpp: - find ./src/input -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_input_h: stage: build @@ -1417,11 +1012,7 @@ deheader_input_h: - find ./src/input -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_listeners_cpp: stage: build @@ -1434,11 +1025,7 @@ deheader_listeners_cpp: - find ./src/listeners -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_listeners_h: stage: build @@ -1451,11 +1038,7 @@ deheader_listeners_h: - find ./src/listeners -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_net_ea_cpp: stage: build @@ -1468,11 +1051,7 @@ deheader_net_ea_cpp: - find ./src/net/ea -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_net_ea_h: stage: build @@ -1485,11 +1064,7 @@ deheader_net_ea_h: - find ./src/net/ea -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_net_eathena_cpp: stage: build @@ -1502,11 +1077,7 @@ deheader_net_eathena_cpp: - find ./src/net/eathena -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_net_eathena_h: stage: build @@ -1519,11 +1090,7 @@ deheader_net_eathena_h: - find ./src/net/eathena -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_net_tmwa_cpp: stage: build @@ -1536,11 +1103,7 @@ deheader_net_tmwa_cpp: - find ./src/net/tmwa -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_net_tmwa_h: stage: build @@ -1553,11 +1116,7 @@ deheader_net_tmwa_h: - find ./src/net/tmwa -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_net_cpp: stage: build @@ -1570,11 +1129,7 @@ deheader_net_cpp: - find ./src/net -type f -name "*.cpp" ! -path "./src/net/*/*" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_net_h: stage: build @@ -1587,11 +1142,7 @@ deheader_net_h: - find ./src/net -type f -name "*.h" ! -path "./src/net/*/*" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_particle_cpp: stage: build @@ -1604,11 +1155,7 @@ deheader_particle_cpp: - find ./src/particle -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_particle_h: stage: build @@ -1621,11 +1168,7 @@ deheader_particle_h: - find ./src/particle -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_render_cpp: stage: build @@ -1638,11 +1181,7 @@ deheader_render_cpp: - find ./src/render -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_render_h: stage: build @@ -1655,11 +1194,7 @@ deheader_render_h: - find ./src/render -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_resources_db_cpp: stage: build @@ -1672,11 +1207,7 @@ deheader_resources_db_cpp: - find ./src/resources/db -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_resources_db_h: stage: build @@ -1689,11 +1220,7 @@ deheader_resources_db_h: - find ./src/resources/db -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_resources_map_cpp: stage: build @@ -1706,11 +1233,7 @@ deheader_resources_map_cpp: - find ./src/resources/map -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_resources_map_h: stage: build @@ -1723,11 +1246,7 @@ deheader_resources_map_h: - find ./src/resources/map -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_resources_cpp: stage: build @@ -1740,11 +1259,7 @@ deheader_resources_cpp: - find ./src/resources -type f -name "*.cpp" ! -path "./src/resources/db/*" ! -path "./src/resources/map/*" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_resources_h: stage: build @@ -1757,11 +1272,7 @@ deheader_resources_h: - find ./src/resources -type f -name "*.h" ! -path "./src/resources/db/*" ! -path "./src/resources/map/*" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_test_cpp: stage: build @@ -1774,11 +1285,7 @@ deheader_test_cpp: - find ./src/test -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_test_h: stage: build @@ -1791,11 +1298,7 @@ deheader_test_h: - find ./src/test -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_utils_cpp: stage: build @@ -1808,11 +1311,7 @@ deheader_utils_cpp: - find ./src/utils -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_utils_h: stage: build @@ -1823,13 +1322,9 @@ deheader_utils_h: - export LOGFILE=logs/deheader.log - ./tools/ci/jobs/deheader.sh - find ./src/utils -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - - ./tools/ci/jobs/deheader2.sh - image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + - ./tools/ci/jobs/deheader2.sh + image: debian:unstable + <<: *log-failed-jobs deheader_cpp: stage: build @@ -1842,11 +1337,7 @@ deheader_cpp: - find ./src -type f -name "*.cpp" ! -path "./src/*/*" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_h: stage: build @@ -1859,11 +1350,7 @@ deheader_h: - find ./src -type f -name "*.h" ! -path "./src/*/*" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_cc: stage: build @@ -1876,11 +1363,7 @@ deheader_cc: - find ./src -type f -name "*.cc" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs # deheader sdl2 @@ -1895,11 +1378,7 @@ deheader_sdl2_actions_cpp: - find ./src/actions -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_actions_h: stage: build @@ -1912,11 +1391,7 @@ deheader_sdl2_actions_h: - find ./src/actions -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_being_cpp: stage: build @@ -1929,11 +1404,7 @@ deheader_sdl2_being_cpp: - find ./src/being -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_being_h: stage: build @@ -1946,11 +1417,7 @@ deheader_sdl2_being_h: - find ./src/being -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_const_h: stage: build @@ -1963,11 +1430,7 @@ deheader_sdl2_const_h: - find ./src/const -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_dyetool_cpp: stage: build @@ -1980,11 +1443,7 @@ deheader_sdl2_dyetool_cpp: - find ./src/dyetool -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_dyetool_h: stage: build @@ -1997,11 +1456,7 @@ deheader_sdl2_dyetool_h: - find ./src/dyetool -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_enums_h: stage: build @@ -2014,11 +1469,7 @@ deheader_sdl2_enums_h: - find ./src/enums -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_events_h: stage: build @@ -2031,11 +1482,7 @@ deheader_sdl2_events_h: - find ./src/events -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_gui_fonts_cpp: stage: build @@ -2048,11 +1495,7 @@ deheader_sdl2_gui_fonts_cpp: - find ./src/gui/fonts -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_gui_fonts_h: stage: build @@ -2065,11 +1508,7 @@ deheader_sdl2_gui_fonts_h: - find ./src/gui/fonts -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_gui_models_h: stage: build @@ -2082,11 +1521,7 @@ deheader_sdl2_gui_models_h: - find ./src/gui/models -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_gui_popups_cpp: stage: build @@ -2099,11 +1534,7 @@ deheader_sdl2_gui_popups_cpp: - find ./src/gui/popups -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_gui_popups_h: stage: build @@ -2116,11 +1547,7 @@ deheader_sdl2_gui_popups_h: - find ./src/gui/popups -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_gui_shortcut_cpp: stage: build @@ -2133,11 +1560,7 @@ deheader_sdl2_gui_shortcut_cpp: - find ./src/gui/shortcut -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_gui_shortcut_h: stage: build @@ -2150,11 +1573,7 @@ deheader_sdl2_gui_shortcut_h: - find ./src/gui/shortcut -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_gui_widgets_h: stage: build @@ -2167,11 +1586,7 @@ deheader_sdl2_gui_widgets_h: - find ./src/gui/widgets -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_gui_windows_h: stage: build @@ -2184,11 +1599,7 @@ deheader_sdl2_gui_windows_h: - find ./src/gui/windows -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_gui_cpp: stage: build @@ -2201,11 +1612,7 @@ deheader_sdl2_gui_cpp: - find ./src/gui -type f -name "*.cpp" ! -path "./src/gui/*/*" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_gui_h: stage: build @@ -2218,11 +1625,7 @@ deheader_sdl2_gui_h: - find ./src/gui -type f -name "*.h" ! -path "./src/gui/*/*" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_input_cpp: stage: build @@ -2235,11 +1638,7 @@ deheader_sdl2_input_cpp: - find ./src/input -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_input_h: stage: build @@ -2252,11 +1651,7 @@ deheader_sdl2_input_h: - find ./src/input -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_listeners_cpp: stage: build @@ -2269,11 +1664,7 @@ deheader_sdl2_listeners_cpp: - find ./src/listeners -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_listeners_h: stage: build @@ -2286,11 +1677,7 @@ deheader_sdl2_listeners_h: - find ./src/listeners -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_net_ea_cpp: stage: build @@ -2303,11 +1690,7 @@ deheader_sdl2_net_ea_cpp: - find ./src/net/ea -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_net_ea_h: stage: build @@ -2320,11 +1703,7 @@ deheader_sdl2_net_ea_h: - find ./src/net/ea -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_net_eathena_cpp: stage: build @@ -2337,11 +1716,7 @@ deheader_sdl2_net_eathena_cpp: - find ./src/net/eathena -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_net_eathena_h: stage: build @@ -2354,11 +1729,7 @@ deheader_sdl2_net_eathena_h: - find ./src/net/eathena -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_net_tmwa_cpp: stage: build @@ -2371,11 +1742,7 @@ deheader_sdl2_net_tmwa_cpp: - find ./src/net/tmwa -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_net_tmwa_h: stage: build @@ -2388,11 +1755,7 @@ deheader_sdl2_net_tmwa_h: - find ./src/net/tmwa -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_net_cpp: stage: build @@ -2405,11 +1768,7 @@ deheader_sdl2_net_cpp: - find ./src/net -type f -name "*.cpp" ! -path "./src/net/*/*" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_net_h: stage: build @@ -2422,11 +1781,7 @@ deheader_sdl2_net_h: - find ./src/net -type f -name "*.h" ! -path "./src/net/*/*" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_particle_cpp: stage: build @@ -2439,11 +1794,7 @@ deheader_sdl2_particle_cpp: - find ./src/particle -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_particle_h: stage: build @@ -2456,11 +1807,7 @@ deheader_sdl2_particle_h: - find ./src/particle -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_render_cpp: stage: build @@ -2473,11 +1820,7 @@ deheader_sdl2_render_cpp: - find ./src/render -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_render_h: stage: build @@ -2490,11 +1833,7 @@ deheader_sdl2_render_h: - find ./src/render -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_resources_db_cpp: stage: build @@ -2507,11 +1846,7 @@ deheader_sdl2_resources_db_cpp: - find ./src/resources/db -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_resources_db_h: stage: build @@ -2524,11 +1859,7 @@ deheader_sdl2_resources_db_h: - find ./src/resources/db -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_resources_map_cpp: stage: build @@ -2541,11 +1872,7 @@ deheader_sdl2_resources_map_cpp: - find ./src/resources/map -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_resources_map_h: stage: build @@ -2558,11 +1885,7 @@ deheader_sdl2_resources_map_h: - find ./src/resources/map -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_resources_cpp: stage: build @@ -2575,11 +1898,7 @@ deheader_sdl2_resources_cpp: - find ./src/resources -type f -name "*.cpp" ! -path "./src/resources/db/*" ! -path "./src/resources/map/*" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_resources_h: stage: build @@ -2592,11 +1911,7 @@ deheader_sdl2_resources_h: - find ./src/resources -type f -name "*.h" ! -path "./src/resources/db/*" ! -path "./src/resources/map/*" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_test_cpp: stage: build @@ -2609,11 +1924,7 @@ deheader_sdl2_test_cpp: - find ./src/test -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_test_h: stage: build @@ -2626,11 +1937,7 @@ deheader_sdl2_test_h: - find ./src/test -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_utils_cpp: stage: build @@ -2643,11 +1950,7 @@ deheader_sdl2_utils_cpp: - find ./src/utils -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_utils_h: stage: build @@ -2660,11 +1963,7 @@ deheader_sdl2_utils_h: - find ./src/utils -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_cpp: stage: build @@ -2673,15 +1972,11 @@ deheader_sdl2_cpp: - export INCLUDES="-I/usr/include/SDL2 -I/usr/include/libxml2" - export CXX=g++-5 - export LOGFILE=logs/deheader.log - - ./tools/ci/jobs/deheader_sdl2.sh - - find ./src -type f -name "*.cpp" ! -path "./src/*/*" -exec tools/ci/scripts/deheader.sh {} \; - - ./tools/ci/jobs/deheader2.sh - image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + - ./tools/ci/jobs/deheader_sdl2.sh + - find ./src -type f -name "*.cpp" ! -path "./src/*/*" -exec tools/ci/scripts/deheader.sh {} \; + - ./tools/ci/jobs/deheader2.sh + image: debian:unstable + <<: *log-failed-jobs deheader_sdl2_h: stage: build @@ -2694,11 +1989,7 @@ deheader_sdl2_h: - find ./src -type f -name "*.h" ! -path "./src/*/*" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_cc: stage: build @@ -2711,11 +2002,7 @@ deheader_sdl2_cc: - find ./src -type f -name "*.cc" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs # dehedeart without opengl @@ -2730,11 +2017,7 @@ deheader_actions_withoutopengl_cpp: - find ./src/actions -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_actions_withoutopengl_h: stage: build @@ -2747,11 +2030,7 @@ deheader_actions_withoutopengl_h: - find ./src/actions -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_being_withoutopengl_cpp: stage: build @@ -2764,11 +2043,7 @@ deheader_being_withoutopengl_cpp: - find ./src/being -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_being_withoutopengl_h: stage: build @@ -2781,11 +2056,7 @@ deheader_being_withoutopengl_h: - find ./src/being -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_const_withoutopengl_h: stage: build @@ -2798,11 +2069,7 @@ deheader_const_withoutopengl_h: - find ./src/const -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_dyetool_withoutopengl_cpp: stage: build @@ -2815,11 +2082,7 @@ deheader_dyetool_withoutopengl_cpp: - find ./src/dyetool -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_dyetool_withoutopengl_h: stage: build @@ -2832,11 +2095,7 @@ deheader_dyetool_withoutopengl_h: - find ./src/dyetool -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_enums_withoutopengl_h: stage: build @@ -2849,11 +2108,7 @@ deheader_enums_withoutopengl_h: - find ./src/enums -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_events_withoutopengl_h: stage: build @@ -2866,11 +2121,7 @@ deheader_events_withoutopengl_h: - find ./src/events -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_gui_fonts_withoutopengl_cpp: stage: build @@ -2883,11 +2134,7 @@ deheader_gui_fonts_withoutopengl_cpp: - find ./src/gui/fonts -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_gui_fonts_withoutopengl_h: stage: build @@ -2900,11 +2147,7 @@ deheader_gui_fonts_withoutopengl_h: - find ./src/gui/fonts -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_gui_models_withoutopengl_h: stage: build @@ -2917,11 +2160,7 @@ deheader_gui_models_withoutopengl_h: - find ./src/gui/models -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_gui_popups_withoutopengl_cpp: stage: build @@ -2934,11 +2173,7 @@ deheader_gui_popups_withoutopengl_cpp: - find ./src/gui/popups -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_gui_popups_withoutopengl_h: stage: build @@ -2951,11 +2186,7 @@ deheader_gui_popups_withoutopengl_h: - find ./src/gui/popups -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_gui_shortcut_withoutopengl_cpp: stage: build @@ -2968,11 +2199,7 @@ deheader_gui_shortcut_withoutopengl_cpp: - find ./src/gui/shortcut -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_gui_shortcut_withoutopengl_h: stage: build @@ -2985,11 +2212,7 @@ deheader_gui_shortcut_withoutopengl_h: - find ./src/gui/shortcut -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_gui_widgets_withoutopengl_h: stage: build @@ -3002,11 +2225,7 @@ deheader_gui_widgets_withoutopengl_h: - find ./src/gui/widgets -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_gui_windows_withoutopengl_h: stage: build @@ -3019,11 +2238,7 @@ deheader_gui_windows_withoutopengl_h: - find ./src/gui/windows -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_gui_withoutopengl_cpp: stage: build @@ -3036,11 +2251,7 @@ deheader_gui_withoutopengl_cpp: - find ./src/gui -type f -name "*.cpp" ! -path "./src/gui/*/*" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_gui_withoutopengl_h: stage: build @@ -3053,11 +2264,7 @@ deheader_gui_withoutopengl_h: - find ./src/gui -type f -name "*.h" ! -path "./src/gui/*/*" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_input_withoutopengl_cpp: stage: build @@ -3070,11 +2277,7 @@ deheader_input_withoutopengl_cpp: - find ./src/input -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_input_withoutopengl_h: stage: build @@ -3087,11 +2290,7 @@ deheader_input_withoutopengl_h: - find ./src/input -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_listeners_withoutopengl_cpp: stage: build @@ -3104,11 +2303,7 @@ deheader_listeners_withoutopengl_cpp: - find ./src/listeners -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_listeners_withoutopengl_h: stage: build @@ -3121,11 +2316,7 @@ deheader_listeners_withoutopengl_h: - find ./src/listeners -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_net_ea_withoutopengl_cpp: stage: build @@ -3138,11 +2329,7 @@ deheader_net_ea_withoutopengl_cpp: - find ./src/net/ea -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_net_ea_withoutopengl_h: stage: build @@ -3155,11 +2342,7 @@ deheader_net_ea_withoutopengl_h: - find ./src/net/ea -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_net_eathena_withoutopengl_cpp: stage: build @@ -3172,11 +2355,7 @@ deheader_net_eathena_withoutopengl_cpp: - find ./src/net/eathena -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_net_eathena_withoutopengl_h: stage: build @@ -3189,11 +2368,7 @@ deheader_net_eathena_withoutopengl_h: - find ./src/net/eathena -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_net_tmwa_withoutopengl_cpp: stage: build @@ -3206,11 +2381,7 @@ deheader_net_tmwa_withoutopengl_cpp: - find ./src/net/tmwa -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_net_tmwa_withoutopengl_h: stage: build @@ -3223,11 +2394,7 @@ deheader_net_tmwa_withoutopengl_h: - find ./src/net/tmwa -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_net_withoutopengl_cpp: stage: build @@ -3240,11 +2407,7 @@ deheader_net_withoutopengl_cpp: - find ./src/net -type f -name "*.cpp" ! -path "./src/net/*/*" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_net_withoutopengl_h: stage: build @@ -3257,11 +2420,7 @@ deheader_net_withoutopengl_h: - find ./src/net -type f -name "*.h" ! -path "./src/net/*/*" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_particle_withoutopengl_cpp: stage: build @@ -3274,11 +2433,7 @@ deheader_particle_withoutopengl_cpp: - find ./src/particle -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_particle_withoutopengl_h: stage: build @@ -3291,11 +2446,7 @@ deheader_particle_withoutopengl_h: - find ./src/particle -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_render_withoutopengl_cpp: stage: build @@ -3308,11 +2459,7 @@ deheader_render_withoutopengl_cpp: - find ./src/render -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_render_withoutopengl_h: stage: build @@ -3325,11 +2472,7 @@ deheader_render_withoutopengl_h: - find ./src/render -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_resources_db_withoutopengl_cpp: stage: build @@ -3342,11 +2485,7 @@ deheader_resources_db_withoutopengl_cpp: - find ./src/resources/db -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_resources_db_withoutopengl_h: stage: build @@ -3359,11 +2498,7 @@ deheader_resources_db_withoutopengl_h: - find ./src/resources/db -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_resources_map_withoutopengl_cpp: stage: build @@ -3376,11 +2511,7 @@ deheader_resources_map_withoutopengl_cpp: - find ./src/resources/map -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_resources_map_withoutopengl_h: stage: build @@ -3393,11 +2524,7 @@ deheader_resources_map_withoutopengl_h: - find ./src/resources/map -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_resources_withoutopengl_cpp: stage: build @@ -3410,11 +2537,7 @@ deheader_resources_withoutopengl_cpp: - find ./src/resources -type f -name "*.cpp" ! -path "./src/resources/db/*" ! -path "./src/resources/map/*" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_resources_withoutopengl_h: stage: build @@ -3427,11 +2550,7 @@ deheader_resources_withoutopengl_h: - find ./src/resources -type f -name "*.h" ! -path "./src/resources/db/*" ! -path "./src/resources/map/*" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_test_withoutopengl_cpp: stage: build @@ -3444,11 +2563,7 @@ deheader_test_withoutopengl_cpp: - find ./src/test -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_test_withoutopengl_h: stage: build @@ -3461,11 +2576,7 @@ deheader_test_withoutopengl_h: - find ./src/test -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_utils_withoutopengl_cpp: stage: build @@ -3478,11 +2589,7 @@ deheader_utils_withoutopengl_cpp: - find ./src/utils -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_utils_withoutopengl_h: stage: build @@ -3495,11 +2602,7 @@ deheader_utils_withoutopengl_h: - find ./src/utils -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_withoutopengl_cpp: stage: build @@ -3512,11 +2615,7 @@ deheader_withoutopengl_cpp: - find ./src -type f -name "*.cpp" ! -path "./src/*/*" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_withoutopengl_h: stage: build @@ -3527,13 +2626,9 @@ deheader_withoutopengl_h: - export LOGFILE=logs/deheader.log - ./tools/ci/jobs/deheader.sh - find ./src -type f -name "*.h" ! -path "./src/*/*" -exec tools/ci/scripts/deheader.sh {} \; - - ./tools/ci/jobs/deheader2.sh - image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + - ./tools/ci/jobs/deheader2.sh + image: debian:unstable + <<: *log-failed-jobs deheader_withoutopengl_cc: stage: build @@ -3546,11 +2641,7 @@ deheader_withoutopengl_cc: - find ./src -type f -name "*.cc" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs # deheader sdl2 @@ -3565,11 +2656,7 @@ deheader_sdl2_actions_withoutopengl_cpp: - find ./src/actions -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_actions_withoutopengl_h: stage: build @@ -3582,11 +2669,7 @@ deheader_sdl2_actions_withoutopengl_h: - find ./src/actions -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_being_withoutopengl_cpp: stage: build @@ -3599,11 +2682,7 @@ deheader_sdl2_being_withoutopengl_cpp: - find ./src/being -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_being_withoutopengl_h: stage: build @@ -3616,11 +2695,7 @@ deheader_sdl2_being_withoutopengl_h: - find ./src/being -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_const_withoutopengl_h: stage: build @@ -3633,11 +2708,7 @@ deheader_sdl2_const_withoutopengl_h: - find ./src/const -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_dyetool_withoutopengl_cpp: stage: build @@ -3650,11 +2721,7 @@ deheader_sdl2_dyetool_withoutopengl_cpp: - find ./src/dyetool -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_dyetool_withoutopengl_h: stage: build @@ -3667,11 +2734,7 @@ deheader_sdl2_dyetool_withoutopengl_h: - find ./src/dyetool -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_enums_withoutopengl_h: stage: build @@ -3684,11 +2747,7 @@ deheader_sdl2_enums_withoutopengl_h: - find ./src/enums -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_events_withoutopengl_h: stage: build @@ -3701,11 +2760,7 @@ deheader_sdl2_events_withoutopengl_h: - find ./src/events -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_gui_fonts_withoutopengl_cpp: stage: build @@ -3718,11 +2773,7 @@ deheader_sdl2_gui_fonts_withoutopengl_cpp: - find ./src/gui/fonts -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_gui_fonts_withoutopengl_h: stage: build @@ -3735,11 +2786,7 @@ deheader_sdl2_gui_fonts_withoutopengl_h: - find ./src/gui/fonts -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_gui_models_withoutopengl_h: stage: build @@ -3752,11 +2799,7 @@ deheader_sdl2_gui_models_withoutopengl_h: - find ./src/gui/models -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_gui_popups_withoutopengl_cpp: stage: build @@ -3769,11 +2812,7 @@ deheader_sdl2_gui_popups_withoutopengl_cpp: - find ./src/gui/popups -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_gui_popups_withoutopengl_h: stage: build @@ -3786,11 +2825,7 @@ deheader_sdl2_gui_popups_withoutopengl_h: - find ./src/gui/popups -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_gui_shortcut_withoutopengl_cpp: stage: build @@ -3803,11 +2838,7 @@ deheader_sdl2_gui_shortcut_withoutopengl_cpp: - find ./src/gui/shortcut -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_gui_shortcut_withoutopengl_h: stage: build @@ -3820,11 +2851,7 @@ deheader_sdl2_gui_shortcut_withoutopengl_h: - find ./src/gui/shortcut -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_gui_widgets_withoutopengl_h: stage: build @@ -3837,11 +2864,7 @@ deheader_sdl2_gui_widgets_withoutopengl_h: - find ./src/gui/widgets -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_gui_windows_withoutopengl_h: stage: build @@ -3854,11 +2877,7 @@ deheader_sdl2_gui_windows_withoutopengl_h: - find ./src/gui/windows -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_gui_withoutopengl_cpp: stage: build @@ -3871,11 +2890,7 @@ deheader_sdl2_gui_withoutopengl_cpp: - find ./src/gui -type f -name "*.cpp" ! -path "./src/gui/*/*" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_gui_withoutopengl_h: stage: build @@ -3888,11 +2903,7 @@ deheader_sdl2_gui_withoutopengl_h: - find ./src/gui -type f -name "*.h" ! -path "./src/gui/*/*" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_input_withoutopengl_cpp: stage: build @@ -3905,11 +2916,7 @@ deheader_sdl2_input_withoutopengl_cpp: - find ./src/input -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_input_withoutopengl_h: stage: build @@ -3922,11 +2929,7 @@ deheader_sdl2_input_withoutopengl_h: - find ./src/input -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_listeners_withoutopengl_cpp: stage: build @@ -3939,11 +2942,7 @@ deheader_sdl2_listeners_withoutopengl_cpp: - find ./src/listeners -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_listeners_withoutopengl_h: stage: build @@ -3956,11 +2955,7 @@ deheader_sdl2_listeners_withoutopengl_h: - find ./src/listeners -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_net_ea_withoutopengl_cpp: stage: build @@ -3973,11 +2968,7 @@ deheader_sdl2_net_ea_withoutopengl_cpp: - find ./src/net/ea -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_net_ea_withoutopengl_h: stage: build @@ -3990,11 +2981,7 @@ deheader_sdl2_net_ea_withoutopengl_h: - find ./src/net/ea -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_net_eathena_withoutopengl_cpp: stage: build @@ -4007,11 +2994,7 @@ deheader_sdl2_net_eathena_withoutopengl_cpp: - find ./src/net/eathena -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_net_eathena_withoutopengl_h: stage: build @@ -4024,11 +3007,7 @@ deheader_sdl2_net_eathena_withoutopengl_h: - find ./src/net/eathena -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_net_tmwa_withoutopengl_cpp: stage: build @@ -4041,11 +3020,7 @@ deheader_sdl2_net_tmwa_withoutopengl_cpp: - find ./src/net/tmwa -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_net_tmwa_withoutopengl_h: stage: build @@ -4058,11 +3033,7 @@ deheader_sdl2_net_tmwa_withoutopengl_h: - find ./src/net/tmwa -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_net_withoutopengl_cpp: stage: build @@ -4075,11 +3046,7 @@ deheader_sdl2_net_withoutopengl_cpp: - find ./src/net -type f -name "*.cpp" ! -path "./src/net/*/*" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_net_withoutopengl_h: stage: build @@ -4092,11 +3059,7 @@ deheader_sdl2_net_withoutopengl_h: - find ./src/net -type f -name "*.h" ! -path "./src/net/*/*" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_particle_withoutopengl_cpp: stage: build @@ -4109,11 +3072,7 @@ deheader_sdl2_particle_withoutopengl_cpp: - find ./src/particle -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_particle_withoutopengl_h: stage: build @@ -4126,11 +3085,7 @@ deheader_sdl2_particle_withoutopengl_h: - find ./src/particle -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_render_withoutopengl_cpp: stage: build @@ -4143,11 +3098,7 @@ deheader_sdl2_render_withoutopengl_cpp: - find ./src/render -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_render_withoutopengl_h: stage: build @@ -4160,11 +3111,7 @@ deheader_sdl2_render_withoutopengl_h: - find ./src/render -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_resources_db_withoutopengl_cpp: stage: build @@ -4177,11 +3124,7 @@ deheader_sdl2_resources_db_withoutopengl_cpp: - find ./src/resources/db -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_resources_db_withoutopengl_h: stage: build @@ -4194,11 +3137,7 @@ deheader_sdl2_resources_db_withoutopengl_h: - find ./src/resources/db -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_resources_map_withoutopengl_cpp: stage: build @@ -4211,11 +3150,7 @@ deheader_sdl2_resources_map_withoutopengl_cpp: - find ./src/resources/map -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_resources_map_withoutopengl_h: stage: build @@ -4228,11 +3163,7 @@ deheader_sdl2_resources_map_withoutopengl_h: - find ./src/resources/map -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_resources_withoutopengl_cpp: stage: build @@ -4245,11 +3176,7 @@ deheader_sdl2_resources_withoutopengl_cpp: - find ./src/resources -type f -name "*.cpp" ! -path "./src/resources/db/*" ! -path "./src/resources/map/*" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_resources_withoutopengl_h: stage: build @@ -4262,11 +3189,7 @@ deheader_sdl2_resources_withoutopengl_h: - find ./src/resources -type f -name "*.h" ! -path "./src/resources/db/*" ! -path "./src/resources/map/*" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_test_withoutopengl_cpp: stage: build @@ -4279,11 +3202,7 @@ deheader_sdl2_test_withoutopengl_cpp: - find ./src/test -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_test_withoutopengl_h: stage: build @@ -4296,11 +3215,7 @@ deheader_sdl2_test_withoutopengl_h: - find ./src/test -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_utils_withoutopengl_cpp: stage: build @@ -4313,11 +3228,7 @@ deheader_sdl2_utils_withoutopengl_cpp: - find ./src/utils -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_utils_withoutopengl_h: stage: build @@ -4330,11 +3241,7 @@ deheader_sdl2_utils_withoutopengl_h: - find ./src/utils -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_withoutopengl_cpp: stage: build @@ -4347,11 +3254,7 @@ deheader_sdl2_withoutopengl_cpp: - find ./src -type f -name "*.cpp" ! -path "./src/*/*" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_withoutopengl_h: stage: build @@ -4364,11 +3267,7 @@ deheader_sdl2_withoutopengl_h: - find ./src -type f -name "*.h" ! -path "./src/*/*" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs deheader_sdl2_withoutopengl_cc: stage: build @@ -4381,11 +3280,7 @@ deheader_sdl2_withoutopengl_cc: - find ./src -type f -name "*.cc" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - artifacts: - paths: - - logs - when: on_failure - expire_in: 3 week + <<: *log-failed-jobs # reports @@ -4402,8 +3297,4 @@ failure: - echo "nothing" image: debian:unstable when: on_failure - artifacts: - paths: - - logs - when: always - expire_in: 3 week + <<: *log-failed-jobs -- cgit v1.2.3-60-g2f50