From 95cb88595b71d73952bfbd2bbac02bfd429b6f60 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Wed, 11 Jan 2017 16:45:32 +0300 Subject: In .gitlab-ci.yml rename log-failed-jobs into job-artifacts. Also save artifacts always and not only on failed builds. --- .gitlab-ci.yml | 604 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 302 insertions(+), 302 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 477b33568..ad624474a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -8,11 +8,11 @@ stages: before_script: - uname -a -.log-failed-jobs: &log-failed-jobs +.job-artifacts: &job-artifacts artifacts: paths: - logs - when: on_failure + when: always expire_in: 3 week # pre build @@ -22,14 +22,14 @@ clang-3.9: script: - ./tools/ci/jobs/clang39.sh image: debian:unstable - <<: *log-failed-jobs + <<: *job-artifacts gcc-5_c++11_i386: stage: prebuild script: - ./tools/ci/jobs/gcc5_c++11.sh image: vicamo/debian:sid-i386 - <<: *log-failed-jobs + <<: *job-artifacts tags: - docker @@ -38,14 +38,14 @@ gcc-6: script: - ./tools/ci/jobs/gcc6.sh image: debian:unstable - <<: *log-failed-jobs + <<: *job-artifacts gcc-6-i386: stage: prebuild script: - ./tools/ci/jobs/gcc6.sh image: vicamo/debian:sid-i386 - <<: *log-failed-jobs + <<: *job-artifacts tags: - docker @@ -54,56 +54,56 @@ gcc-4.4: script: - ./tools/ci/jobs/gcc44.sh image: debian:oldstable - <<: *log-failed-jobs + <<: *job-artifacts gcc-5_sdl2: stage: prebuild script: - ./tools/ci/jobs/gcc5_sdl2.sh image: debian:unstable - <<: *log-failed-jobs + <<: *job-artifacts mplint_po: stage: prebuild script: - ./tools/ci/jobs/mplint.sh po image: debian:unstable - <<: *log-failed-jobs + <<: *job-artifacts mplint_src: stage: prebuild script: - ./tools/ci/jobs/mplint.sh src image: debian:unstable - <<: *log-failed-jobs + <<: *job-artifacts mplint_data: stage: prebuild script: - ./tools/ci/jobs/mplint.sh data image: debian:unstable - <<: *log-failed-jobs + <<: *job-artifacts cpplint: stage: prebuild script: - ./tools/ci/jobs/cpplint.sh image: debian:unstable - <<: *log-failed-jobs + <<: *job-artifacts 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 - <<: *log-failed-jobs + <<: *job-artifacts 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 - <<: *log-failed-jobs + <<: *job-artifacts tags: - docker @@ -112,14 +112,14 @@ pngcheck: script: - ./tools/ci/jobs/pngcheck.sh image: debian:unstable - <<: *log-failed-jobs + <<: *job-artifacts icccheck: stage: prebuild script: - ./tools/ci/jobs/imagemagiccheck.sh image: debian:unstable - <<: *log-failed-jobs + <<: *job-artifacts # tests @@ -128,7 +128,7 @@ gcc-5_sanitize_tests: script: - ./tools/ci/jobs/gcc5_sanitize_tests.sh image: debian:unstable - <<: *log-failed-jobs + <<: *job-artifacts tags: - docker @@ -137,7 +137,7 @@ gcc-6_tests_simd: script: - ./tools/ci/jobs/gcc6_tests_simd.sh image: debian:unstable - <<: *log-failed-jobs + <<: *job-artifacts tags: - docker @@ -146,7 +146,7 @@ gcc-5_sanitize_tests_i386: script: - ./tools/ci/jobs/gcc5_sanitize_tests.sh image: vicamo/debian:sid-i386 - <<: *log-failed-jobs + <<: *job-artifacts tags: - docker @@ -155,7 +155,7 @@ gcc-5_sanitize_no_opengl_tests: script: - ./tools/ci/jobs/gcc5_sanitize_tests.sh --without-opengl image: debian:unstable - <<: *log-failed-jobs + <<: *job-artifacts tags: - docker @@ -164,7 +164,7 @@ gcc-5_sanitize_no_opengltests_i386: script: - ./tools/ci/jobs/gcc5_sanitize_tests.sh --without-opengl image: vicamo/debian:sid-i386 - <<: *log-failed-jobs + <<: *job-artifacts tags: - docker @@ -173,7 +173,7 @@ gcc-5_tests: script: - ./tools/ci/jobs/gcc5_tests.sh image: debian:unstable - <<: *log-failed-jobs + <<: *job-artifacts tags: - docker @@ -182,7 +182,7 @@ gcc-5_tests_i386: script: - ./tools/ci/jobs/gcc5_tests.sh image: vicamo/debian:sid-i386 - <<: *log-failed-jobs + <<: *job-artifacts tags: - docker @@ -191,7 +191,7 @@ gcc-6_tests: script: - ./tools/ci/jobs/gcc6_tests.sh image: debian:unstable - <<: *log-failed-jobs + <<: *job-artifacts tags: - docker @@ -200,7 +200,7 @@ gcc-6_tests_i386: script: - ./tools/ci/jobs/gcc6_tests.sh image: vicamo/debian:sid-i386 - <<: *log-failed-jobs + <<: *job-artifacts tags: - docker @@ -209,7 +209,7 @@ gcc-6_tests_no_opengl: script: - ./tools/ci/jobs/gcc6_tests.sh --without-opengl image: debian:unstable - <<: *log-failed-jobs + <<: *job-artifacts tags: - docker @@ -218,7 +218,7 @@ gcc-6_tests_no_opengl_i386: script: - ./tools/ci/jobs/gcc6_tests.sh --without-opengl image: vicamo/debian:sid-i386 - <<: *log-failed-jobs + <<: *job-artifacts tags: - docker @@ -227,7 +227,7 @@ gcc-5_sdl2_tests: script: - ./tools/ci/jobs/gcc5_sdl2_tests.sh image: debian:unstable - <<: *log-failed-jobs + <<: *job-artifacts tags: - docker @@ -236,7 +236,7 @@ gcc-5_sdl2_tests_i386: script: - ./tools/ci/jobs/gcc5_sdl2_tests.sh image: vicamo/debian:sid-i386 - <<: *log-failed-jobs + <<: *job-artifacts tags: - docker @@ -245,7 +245,7 @@ gcc-5_sdl2_no_opengl_tests: script: - ./tools/ci/jobs/gcc5_sdl2_tests.sh --without-opengl image: debian:unstable - <<: *log-failed-jobs + <<: *job-artifacts tags: - docker @@ -254,7 +254,7 @@ gcc-5_sdl2_no_opengl_tests_i386: script: - ./tools/ci/jobs/gcc5_sdl2_tests.sh --without-opengl image: vicamo/debian:sid-i386 - <<: *log-failed-jobs + <<: *job-artifacts tags: - docker @@ -263,14 +263,14 @@ gcc-6_lto: script: - ./tools/ci/jobs/gcc6_lto.sh image: debian:unstable - <<: *log-failed-jobs + <<: *job-artifacts gcc-6_lto_i386: stage: build script: - ./tools/ci/jobs/gcc6_lto.sh image: vicamo/debian:sid-i386 - <<: *log-failed-jobs + <<: *job-artifacts tags: - docker @@ -281,7 +281,7 @@ gcc-4.4_i386: script: - ./tools/ci/jobs/gcc44.sh image: vicamo/debian:oldstable-i386 - <<: *log-failed-jobs + <<: *job-artifacts tags: - docker @@ -290,7 +290,7 @@ gcc-4.5: script: - ./tools/ci/jobs/gcc45.sh image: ubuntu:12.04 - <<: *log-failed-jobs + <<: *job-artifacts tags: - docker @@ -299,14 +299,14 @@ gcc-4.6: script: - ./tools/ci/jobs/gcc46.sh image: debian:oldstable - <<: *log-failed-jobs + <<: *job-artifacts gcc-4.6_i386: stage: build script: - ./tools/ci/jobs/gcc46.sh image: vicamo/debian:oldstable-i386 - <<: *log-failed-jobs + <<: *job-artifacts tags: - docker @@ -315,7 +315,7 @@ gcc-4.7: script: - ./tools/ci/jobs/gcc47.sh image: debian:oldstable - <<: *log-failed-jobs + <<: *job-artifacts tags: - docker @@ -324,7 +324,7 @@ gcc-4.7_i386: script: - ./tools/ci/jobs/gcc47.sh image: vicamo/debian:oldstable-i386 - <<: *log-failed-jobs + <<: *job-artifacts tags: - docker @@ -333,14 +333,14 @@ gcc-4.8: script: - ./tools/ci/jobs/gcc48.sh image: debian:stable - <<: *log-failed-jobs + <<: *job-artifacts gcc-4.8_i386: stage: build script: - ./tools/ci/jobs/gcc48.sh image: vicamo/debian:stable-i386 - <<: *log-failed-jobs + <<: *job-artifacts tags: - docker @@ -349,7 +349,7 @@ clang-3.0: script: - ./tools/ci/jobs/clang.sh clang image: debian:oldstable - <<: *log-failed-jobs + <<: *job-artifacts tags: - docker @@ -358,7 +358,7 @@ clang-3.0_i386: script: - ./tools/ci/jobs/clang.sh clang image: vicamo/debian:oldstable-i386 - <<: *log-failed-jobs + <<: *job-artifacts tags: - docker @@ -367,7 +367,7 @@ clang-3.3: script: - ./tools/ci/jobs/clang.sh clang-3.3 image: ubuntu:12.04 - <<: *log-failed-jobs + <<: *job-artifacts tags: - docker @@ -376,7 +376,7 @@ clang-3.3_i386: script: - ./tools/ci/jobs/clang.sh clang-3.3 image: vicamo/ubuntu:precise-i386 - <<: *log-failed-jobs + <<: *job-artifacts tags: - docker @@ -385,14 +385,14 @@ clang-3.4: script: - ./tools/ci/jobs/clang34.sh image: debian:stable - <<: *log-failed-jobs + <<: *job-artifacts clang-3.4_i386: stage: build script: - ./tools/ci/jobs/clang34.sh image: vicamo/debian:stable-i386 - <<: *log-failed-jobs + <<: *job-artifacts tags: - docker @@ -401,14 +401,14 @@ clang-3.5: script: - ./tools/ci/jobs/clang35.sh image: debian:stable - <<: *log-failed-jobs + <<: *job-artifacts clang-3.5_i386: stage: build script: - ./tools/ci/jobs/clang35.sh image: vicamo/debian:stable-i386 - <<: *log-failed-jobs + <<: *job-artifacts tags: - docker @@ -417,7 +417,7 @@ clang-3.6: script: - ./tools/ci/jobs/clang36.sh image: ubuntu:14.04 - <<: *log-failed-jobs + <<: *job-artifacts tags: - docker @@ -426,7 +426,7 @@ clang-3.6_i386: script: - ./tools/ci/jobs/clang36.sh image: vicamo/ubuntu:trusty-i386 - <<: *log-failed-jobs + <<: *job-artifacts tags: - docker @@ -435,7 +435,7 @@ clang-3.7: script: - ./tools/ci/jobs/clang37.sh image: ubuntu:16.04 - <<: *log-failed-jobs + <<: *job-artifacts tags: - docker @@ -444,7 +444,7 @@ clang-3.7_i386: script: - ./tools/ci/jobs/clang37.sh image: vicamo/ubuntu:xenial-i386 - <<: *log-failed-jobs + <<: *job-artifacts tags: - docker @@ -453,7 +453,7 @@ clang-3.8: script: - ./tools/ci/jobs/clang38.sh image: ubuntu:16.04 - <<: *log-failed-jobs + <<: *job-artifacts tags: - docker @@ -462,7 +462,7 @@ clang-3.8_i386: script: - ./tools/ci/jobs/clang38.sh image: vicamo/ubuntu:xenial-i386 - <<: *log-failed-jobs + <<: *job-artifacts tags: - docker @@ -471,14 +471,14 @@ clang-3.8_i386: script: - ./tools/ci/jobs/clang39.sh_c++11.sh image: debian:unstable - <<: *log-failed-jobs + <<: *job-artifacts .clang-3.9_c++11_i386: stage: build script: - ./tools/ci/jobs/clang39.sh_c++11.sh image: vicamo/debian:sid-i386 - <<: *log-failed-jobs + <<: *job-artifacts tags: - docker @@ -487,21 +487,21 @@ gcc-4.8_c++11: script: - ./tools/ci/jobs/gcc48_c++11.sh image: debian:stable - <<: *log-failed-jobs + <<: *job-artifacts gcc-4.9: stage: build script: - ./tools/ci/jobs/gcc49.sh image: debian:stable - <<: *log-failed-jobs + <<: *job-artifacts gcc-4.9_i386: stage: build script: - ./tools/ci/jobs/gcc49.sh image: vicamo/debian:stable-i386 - <<: *log-failed-jobs + <<: *job-artifacts tags: - docker @@ -510,14 +510,14 @@ gcc-4.9_c++11: script: - ./tools/ci/jobs/gcc49_c++11.sh image: debian:stable - <<: *log-failed-jobs + <<: *job-artifacts cmake_gcc-4.9: stage: build script: - ./tools/ci/jobs/cmake_gcc49.sh image: debian:stable - <<: *log-failed-jobs + <<: *job-artifacts tags: - docker @@ -526,7 +526,7 @@ cmake_gcc-4.9: script: - ./tools/ci/jobs/clang40.sh image: debian:unstable - <<: *log-failed-jobs + <<: *job-artifacts tags: - docker @@ -535,28 +535,28 @@ gcc-5: script: - ./tools/ci/jobs/gcc5.sh --enable-werror image: debian:unstable - <<: *log-failed-jobs + <<: *job-artifacts gcc-5_c++11: stage: build script: - ./tools/ci/jobs/gcc5_c++11.sh image: debian:unstable - <<: *log-failed-jobs + <<: *job-artifacts gcc-5_sdl2_c++11: stage: build script: - ./tools/ci/jobs/gcc5_sdl2_c++11.sh image: debian:unstable - <<: *log-failed-jobs + <<: *job-artifacts gcc-5_sdl2_c++11_i386: stage: build script: - ./tools/ci/jobs/gcc5_sdl2_c++11.sh image: vicamo/debian:sid-i386 - <<: *log-failed-jobs + <<: *job-artifacts tags: - docker @@ -565,14 +565,14 @@ gcc-snapshot: script: - ./tools/ci/jobs/gccsnapshot.sh image: debian:unstable - <<: *log-failed-jobs + <<: *job-artifacts gcc-snapshot_i386: stage: build script: - ./tools/ci/jobs/gccsnapshot.sh image: vicamo/debian:sid-i386 - <<: *log-failed-jobs + <<: *job-artifacts tags: - docker @@ -581,14 +581,14 @@ gcc-snapshot_sdl2: script: - ./tools/ci/jobs/gccsnapshot_sdl2.sh image: debian:unstable - <<: *log-failed-jobs + <<: *job-artifacts gcc-snapshot_sdl2_i386: stage: build script: - ./tools/ci/jobs/gccsnapshot_sdl2.sh image: vicamo/debian:sid-i386 - <<: *log-failed-jobs + <<: *job-artifacts tags: - docker @@ -597,21 +597,21 @@ gcc-5_sanitize: script: - ./tools/ci/jobs/gcc5_sanitize.sh image: debian:unstable - <<: *log-failed-jobs + <<: *job-artifacts gcc-6_sanitize: stage: build script: - ./tools/ci/jobs/gcc6_sanitize.sh image: debian:unstable - <<: *log-failed-jobs + <<: *job-artifacts gcc-6_sanitize_i386: stage: build script: - ./tools/ci/jobs/gcc6_sanitize.sh image: vicamo/debian:sid-i386 - <<: *log-failed-jobs + <<: *job-artifacts tags: - docker @@ -620,112 +620,112 @@ gcc_eathena: script: - ./tools/ci/jobs/gcc6.sh --without-opengl --disable-tmwa image: debian:unstable - <<: *log-failed-jobs + <<: *job-artifacts gcc_without_mumble: stage: build script: - ./tools/ci/jobs/gcc5.sh --without-mumble --enable-werror image: debian:unstable - <<: *log-failed-jobs + <<: *job-artifacts gcc_without_customnls: stage: build script: - ./tools/ci/jobs/gcc5.sh --enable-customnls --enable-werror image: debian:unstable - <<: *log-failed-jobs + <<: *job-artifacts gcc_without_customnls_nonls: stage: build script: - ./tools/ci/jobs/gcc5.sh --enable-customnls --disable-nls --enable-werror image: debian:unstable - <<: *log-failed-jobs + <<: *job-artifacts gcc_without_opengl: stage: build script: - ./tools/ci/jobs/gcc5.sh --without-opengl --enable-werror image: debian:unstable - <<: *log-failed-jobs + <<: *job-artifacts gcc49_cilkplus: stage: build script: - ./tools/ci/jobs/gcc49.sh --enable-cilkplus image: debian:stable - <<: *log-failed-jobs + <<: *job-artifacts gcc-5_cilkplus: stage: build script: - ./tools/ci/jobs/gcc5.sh --enable-cilkplus image: debian:unstable - <<: *log-failed-jobs + <<: *job-artifacts gcc-6_cilkplus: stage: build script: - ./tools/ci/jobs/gcc6.sh --enable-cilkplus image: debian:unstable - <<: *log-failed-jobs + <<: *job-artifacts gcc_eathena_opengl: stage: build script: - ./tools/ci/jobs/gcc6.sh --with-opengl --disable-tmwa image: debian:unstable - <<: *log-failed-jobs + <<: *job-artifacts gcc_eathena_opengl_sdl2: stage: build script: - ./tools/ci/jobs/gcc5_sdl2.sh --with-opengl --disable-tmwa image: debian:unstable - <<: *log-failed-jobs + <<: *job-artifacts gcc_eathena_sdl2: stage: build script: - ./tools/ci/jobs/gcc5_sdl2.sh --without-opengl --disable-tmwa image: debian:unstable - <<: *log-failed-jobs + <<: *job-artifacts gcc_portable: stage: build script: - ./tools/ci/jobs/gcc6.sh --with-opengl --enable-tmwa --enable-portable=yes image: debian:unstable - <<: *log-failed-jobs + <<: *job-artifacts gcc_eathena_c++11: stage: build script: - ./tools/ci/jobs/gcc5_c++11.sh --without-opengl --disable-tmwa image: debian:unstable - <<: *log-failed-jobs + <<: *job-artifacts gcc_eathena_sdl2_c++11: stage: build script: - ./tools/ci/jobs/gcc5_sdl2_c++11.sh --without-opengl --disable-tmwa image: debian:unstable - <<: *log-failed-jobs + <<: *job-artifacts clang-3.9_sdl2: stage: build script: - ./tools/ci/jobs/clang39_sdl2.sh image: debian:unstable - <<: *log-failed-jobs + <<: *job-artifacts gcc-6_no_asserts: stage: build script: - ./tools/ci/jobs/gcc6.sh --disable-asserts image: debian:unstable - <<: *log-failed-jobs + <<: *job-artifacts # different tools @@ -734,21 +734,21 @@ gcc-5_h_eathena_tmwa: script: - ./tools/ci/jobs/gcc5_h.sh -std=c++0x -DDEBUGBUILD -DTMWA_SUPPORT -DENABLE_LIBXML image: debian:unstable - <<: *log-failed-jobs + <<: *job-artifacts 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 - <<: *log-failed-jobs + <<: *job-artifacts gcc-5_tarball: stage: build script: - ./tools/ci/jobs/gcc5_tarball.sh image: debian:unstable - <<: *log-failed-jobs + <<: *job-artifacts # deheader default @@ -763,7 +763,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_gui_windows_cpp: stage: build @@ -776,7 +776,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_gui_windows_withoutopengl_cpp: stage: build @@ -789,7 +789,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_gui_windows_withoutopengl_cpp: stage: build @@ -802,7 +802,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_gui_widgets_cpp: stage: build @@ -815,7 +815,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_gui_widgets_cpp: stage: build @@ -828,7 +828,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_gui_widgets_withoutopengl_cpp: stage: build @@ -841,7 +841,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_gui_widgets_withoutopengl_cpp: stage: build @@ -854,7 +854,7 @@ deheader_sdl2_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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_gui_models_cpp: stage: build @@ -867,7 +867,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_gui_models_cpp: stage: build @@ -880,7 +880,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_gui_models_withoutopengl_cpp: stage: build @@ -893,7 +893,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_gui_models_withoutopengl_cpp: stage: build @@ -906,7 +906,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_actions_cpp: stage: build @@ -919,7 +919,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_actions_h: stage: build @@ -932,7 +932,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_being_cpp: stage: build @@ -945,7 +945,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_being_h: stage: build @@ -958,7 +958,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_const_h: stage: build @@ -971,7 +971,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_dyetool_cpp: stage: build @@ -984,7 +984,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_dyetool_h: stage: build @@ -997,7 +997,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_enums_h: stage: build @@ -1010,7 +1010,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_events_h: stage: build @@ -1023,7 +1023,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_gui_fonts_cpp: stage: build @@ -1036,7 +1036,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_gui_fonts_h: stage: build @@ -1049,7 +1049,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_gui_models_h: stage: build @@ -1062,7 +1062,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_gui_popups_cpp: stage: build @@ -1075,7 +1075,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_gui_popups_h: stage: build @@ -1088,7 +1088,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_gui_shortcut_cpp: stage: build @@ -1101,7 +1101,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_gui_shortcut_h: stage: build @@ -1114,7 +1114,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_gui_widgets_h: stage: build @@ -1127,7 +1127,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_gui_windows_h: stage: build @@ -1140,7 +1140,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_gui_cpp: stage: build @@ -1153,7 +1153,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_gui_h: stage: build @@ -1166,7 +1166,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_input_cpp: stage: build @@ -1179,7 +1179,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_input_h: stage: build @@ -1192,7 +1192,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_listeners_cpp: stage: build @@ -1205,7 +1205,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_listeners_h: stage: build @@ -1218,7 +1218,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_net_ea_cpp: stage: build @@ -1231,7 +1231,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_net_ea_h: stage: build @@ -1244,7 +1244,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_net_eathena_cpp: stage: build @@ -1257,7 +1257,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_net_eathena_h: stage: build @@ -1270,7 +1270,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_net_tmwa_cpp: stage: build @@ -1283,7 +1283,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_net_tmwa_h: stage: build @@ -1296,7 +1296,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_net_cpp: stage: build @@ -1309,7 +1309,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_net_h: stage: build @@ -1322,7 +1322,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_particle_cpp: stage: build @@ -1335,7 +1335,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_particle_h: stage: build @@ -1348,7 +1348,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_render_cpp: stage: build @@ -1361,7 +1361,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_render_h: stage: build @@ -1374,7 +1374,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_resources_db_cpp: stage: build @@ -1387,7 +1387,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_resources_db_h: stage: build @@ -1400,7 +1400,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_resources_map_cpp: stage: build @@ -1413,7 +1413,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_resources_map_h: stage: build @@ -1426,7 +1426,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_resources_cpp: stage: build @@ -1439,7 +1439,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_resources_h: stage: build @@ -1452,7 +1452,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_test_cpp: stage: build @@ -1465,7 +1465,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_test_h: stage: build @@ -1478,7 +1478,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_utils_cpp: stage: build @@ -1491,7 +1491,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_utils_h: stage: build @@ -1504,7 +1504,7 @@ deheader_utils_h: - find ./src/utils -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - <<: *log-failed-jobs + <<: *job-artifacts deheader_cpp: stage: build @@ -1517,7 +1517,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_h: stage: build @@ -1530,7 +1530,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_cc: stage: build @@ -1543,7 +1543,7 @@ deheader_cc: - find ./src -type f -name "*.cc" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - <<: *log-failed-jobs + <<: *job-artifacts # deheader sdl2 @@ -1558,7 +1558,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_actions_h: stage: build @@ -1571,7 +1571,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_being_cpp: stage: build @@ -1584,7 +1584,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_being_h: stage: build @@ -1597,7 +1597,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_const_h: stage: build @@ -1610,7 +1610,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_dyetool_cpp: stage: build @@ -1623,7 +1623,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_dyetool_h: stage: build @@ -1636,7 +1636,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_enums_h: stage: build @@ -1649,7 +1649,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_events_h: stage: build @@ -1662,7 +1662,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_gui_fonts_cpp: stage: build @@ -1675,7 +1675,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_gui_fonts_h: stage: build @@ -1688,7 +1688,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_gui_models_h: stage: build @@ -1701,7 +1701,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_gui_popups_cpp: stage: build @@ -1714,7 +1714,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_gui_popups_h: stage: build @@ -1727,7 +1727,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_gui_shortcut_cpp: stage: build @@ -1740,7 +1740,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_gui_shortcut_h: stage: build @@ -1753,7 +1753,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_gui_widgets_h: stage: build @@ -1766,7 +1766,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_gui_windows_h: stage: build @@ -1779,7 +1779,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_gui_cpp: stage: build @@ -1792,7 +1792,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_gui_h: stage: build @@ -1805,7 +1805,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_input_cpp: stage: build @@ -1818,7 +1818,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_input_h: stage: build @@ -1831,7 +1831,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_listeners_cpp: stage: build @@ -1844,7 +1844,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_listeners_h: stage: build @@ -1857,7 +1857,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_net_ea_cpp: stage: build @@ -1870,7 +1870,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_net_ea_h: stage: build @@ -1883,7 +1883,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_net_eathena_cpp: stage: build @@ -1896,7 +1896,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_net_eathena_h: stage: build @@ -1909,7 +1909,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_net_tmwa_cpp: stage: build @@ -1922,7 +1922,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_net_tmwa_h: stage: build @@ -1935,7 +1935,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_net_cpp: stage: build @@ -1948,7 +1948,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_net_h: stage: build @@ -1961,7 +1961,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_particle_cpp: stage: build @@ -1974,7 +1974,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_particle_h: stage: build @@ -1987,7 +1987,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_render_cpp: stage: build @@ -2000,7 +2000,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_render_h: stage: build @@ -2013,7 +2013,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_resources_db_cpp: stage: build @@ -2026,7 +2026,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_resources_db_h: stage: build @@ -2039,7 +2039,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_resources_map_cpp: stage: build @@ -2052,7 +2052,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_resources_map_h: stage: build @@ -2065,7 +2065,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_resources_cpp: stage: build @@ -2078,7 +2078,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_resources_h: stage: build @@ -2091,7 +2091,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_test_cpp: stage: build @@ -2104,7 +2104,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_test_h: stage: build @@ -2117,7 +2117,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_utils_cpp: stage: build @@ -2130,7 +2130,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_utils_h: stage: build @@ -2143,7 +2143,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_cpp: stage: build @@ -2156,7 +2156,7 @@ deheader_sdl2_cpp: - 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 + <<: *job-artifacts deheader_sdl2_h: stage: build @@ -2169,7 +2169,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_cc: stage: build @@ -2182,7 +2182,7 @@ deheader_sdl2_cc: - find ./src -type f -name "*.cc" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - <<: *log-failed-jobs + <<: *job-artifacts # dehedeart without opengl @@ -2197,7 +2197,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_actions_withoutopengl_h: stage: build @@ -2210,7 +2210,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_being_withoutopengl_cpp: stage: build @@ -2223,7 +2223,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_being_withoutopengl_h: stage: build @@ -2236,7 +2236,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_const_withoutopengl_h: stage: build @@ -2249,7 +2249,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_dyetool_withoutopengl_cpp: stage: build @@ -2262,7 +2262,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_dyetool_withoutopengl_h: stage: build @@ -2275,7 +2275,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_enums_withoutopengl_h: stage: build @@ -2288,7 +2288,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_events_withoutopengl_h: stage: build @@ -2301,7 +2301,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_gui_fonts_withoutopengl_cpp: stage: build @@ -2314,7 +2314,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_gui_fonts_withoutopengl_h: stage: build @@ -2327,7 +2327,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_gui_models_withoutopengl_h: stage: build @@ -2340,7 +2340,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_gui_popups_withoutopengl_cpp: stage: build @@ -2353,7 +2353,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_gui_popups_withoutopengl_h: stage: build @@ -2366,7 +2366,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_gui_shortcut_withoutopengl_cpp: stage: build @@ -2379,7 +2379,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_gui_shortcut_withoutopengl_h: stage: build @@ -2392,7 +2392,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_gui_widgets_withoutopengl_h: stage: build @@ -2405,7 +2405,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_gui_windows_withoutopengl_h: stage: build @@ -2418,7 +2418,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_gui_withoutopengl_cpp: stage: build @@ -2431,7 +2431,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_gui_withoutopengl_h: stage: build @@ -2444,7 +2444,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_input_withoutopengl_cpp: stage: build @@ -2457,7 +2457,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_input_withoutopengl_h: stage: build @@ -2470,7 +2470,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_listeners_withoutopengl_cpp: stage: build @@ -2483,7 +2483,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_listeners_withoutopengl_h: stage: build @@ -2496,7 +2496,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_net_ea_withoutopengl_cpp: stage: build @@ -2509,7 +2509,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_net_ea_withoutopengl_h: stage: build @@ -2522,7 +2522,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_net_eathena_withoutopengl_cpp: stage: build @@ -2535,7 +2535,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_net_eathena_withoutopengl_h: stage: build @@ -2548,7 +2548,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_net_tmwa_withoutopengl_cpp: stage: build @@ -2561,7 +2561,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_net_tmwa_withoutopengl_h: stage: build @@ -2574,7 +2574,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_net_withoutopengl_cpp: stage: build @@ -2587,7 +2587,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_net_withoutopengl_h: stage: build @@ -2600,7 +2600,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_particle_withoutopengl_cpp: stage: build @@ -2613,7 +2613,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_particle_withoutopengl_h: stage: build @@ -2626,7 +2626,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_render_withoutopengl_cpp: stage: build @@ -2639,7 +2639,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_render_withoutopengl_h: stage: build @@ -2652,7 +2652,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_resources_db_withoutopengl_cpp: stage: build @@ -2665,7 +2665,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_resources_db_withoutopengl_h: stage: build @@ -2678,7 +2678,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_resources_map_withoutopengl_cpp: stage: build @@ -2691,7 +2691,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_resources_map_withoutopengl_h: stage: build @@ -2704,7 +2704,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_resources_withoutopengl_cpp: stage: build @@ -2717,7 +2717,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_resources_withoutopengl_h: stage: build @@ -2730,7 +2730,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_test_withoutopengl_cpp: stage: build @@ -2743,7 +2743,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_test_withoutopengl_h: stage: build @@ -2756,7 +2756,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_utils_withoutopengl_cpp: stage: build @@ -2769,7 +2769,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_utils_withoutopengl_h: stage: build @@ -2782,7 +2782,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_withoutopengl_cpp: stage: build @@ -2795,7 +2795,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_withoutopengl_h: stage: build @@ -2808,7 +2808,7 @@ deheader_withoutopengl_h: - find ./src -type f -name "*.h" ! -path "./src/*/*" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - <<: *log-failed-jobs + <<: *job-artifacts deheader_withoutopengl_cc: stage: build @@ -2821,7 +2821,7 @@ deheader_withoutopengl_cc: - find ./src -type f -name "*.cc" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - <<: *log-failed-jobs + <<: *job-artifacts # deheader sdl2 @@ -2836,7 +2836,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_actions_withoutopengl_h: stage: build @@ -2849,7 +2849,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_being_withoutopengl_cpp: stage: build @@ -2862,7 +2862,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_being_withoutopengl_h: stage: build @@ -2875,7 +2875,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_const_withoutopengl_h: stage: build @@ -2888,7 +2888,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_dyetool_withoutopengl_cpp: stage: build @@ -2901,7 +2901,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_dyetool_withoutopengl_h: stage: build @@ -2914,7 +2914,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_enums_withoutopengl_h: stage: build @@ -2927,7 +2927,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_events_withoutopengl_h: stage: build @@ -2940,7 +2940,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_gui_fonts_withoutopengl_cpp: stage: build @@ -2953,7 +2953,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_gui_fonts_withoutopengl_h: stage: build @@ -2966,7 +2966,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_gui_models_withoutopengl_h: stage: build @@ -2979,7 +2979,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_gui_popups_withoutopengl_cpp: stage: build @@ -2992,7 +2992,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_gui_popups_withoutopengl_h: stage: build @@ -3005,7 +3005,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_gui_shortcut_withoutopengl_cpp: stage: build @@ -3018,7 +3018,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_gui_shortcut_withoutopengl_h: stage: build @@ -3031,7 +3031,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_gui_widgets_withoutopengl_h: stage: build @@ -3044,7 +3044,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_gui_windows_withoutopengl_h: stage: build @@ -3057,7 +3057,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_gui_withoutopengl_cpp: stage: build @@ -3070,7 +3070,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_gui_withoutopengl_h: stage: build @@ -3083,7 +3083,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_input_withoutopengl_cpp: stage: build @@ -3096,7 +3096,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_input_withoutopengl_h: stage: build @@ -3109,7 +3109,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_listeners_withoutopengl_cpp: stage: build @@ -3122,7 +3122,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_listeners_withoutopengl_h: stage: build @@ -3135,7 +3135,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_net_ea_withoutopengl_cpp: stage: build @@ -3148,7 +3148,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_net_ea_withoutopengl_h: stage: build @@ -3161,7 +3161,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_net_eathena_withoutopengl_cpp: stage: build @@ -3174,7 +3174,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_net_eathena_withoutopengl_h: stage: build @@ -3187,7 +3187,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_net_tmwa_withoutopengl_cpp: stage: build @@ -3200,7 +3200,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_net_tmwa_withoutopengl_h: stage: build @@ -3213,7 +3213,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_net_withoutopengl_cpp: stage: build @@ -3226,7 +3226,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_net_withoutopengl_h: stage: build @@ -3239,7 +3239,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_particle_withoutopengl_cpp: stage: build @@ -3252,7 +3252,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_particle_withoutopengl_h: stage: build @@ -3265,7 +3265,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_render_withoutopengl_cpp: stage: build @@ -3278,7 +3278,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_render_withoutopengl_h: stage: build @@ -3291,7 +3291,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_resources_db_withoutopengl_cpp: stage: build @@ -3304,7 +3304,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_resources_db_withoutopengl_h: stage: build @@ -3317,7 +3317,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_resources_map_withoutopengl_cpp: stage: build @@ -3330,7 +3330,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_resources_map_withoutopengl_h: stage: build @@ -3343,7 +3343,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_resources_withoutopengl_cpp: stage: build @@ -3356,7 +3356,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_resources_withoutopengl_h: stage: build @@ -3369,7 +3369,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_test_withoutopengl_cpp: stage: build @@ -3382,7 +3382,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_test_withoutopengl_h: stage: build @@ -3395,7 +3395,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_utils_withoutopengl_cpp: stage: build @@ -3408,7 +3408,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_utils_withoutopengl_h: stage: build @@ -3421,7 +3421,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_withoutopengl_cpp: stage: build @@ -3434,7 +3434,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_withoutopengl_h: stage: build @@ -3447,7 +3447,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 - <<: *log-failed-jobs + <<: *job-artifacts deheader_sdl2_withoutopengl_cc: stage: build @@ -3460,7 +3460,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 - <<: *log-failed-jobs + <<: *job-artifacts doxygen: stage: build @@ -3528,4 +3528,4 @@ failure: variables: GIT_STRATEGY: none when: on_failure - <<: *log-failed-jobs + <<: *job-artifacts -- cgit v1.2.3-60-g2f50