From 591c4ab7e78da61afddda8a76195212b748a9554 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Wed, 25 Jan 2017 02:12:48 +0300 Subject: Add empty dependencies to most jobs. Also rename ci key job-artifacts to job-shared. --- .gitlab-ci.yml | 611 +++++++++++++++++++++++++++++---------------------------- 1 file changed, 307 insertions(+), 304 deletions(-) (limited to '.gitlab-ci.yml') diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 138abd023..215b184ae 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -10,12 +10,13 @@ variables: GET_SOURCES_ATTEMPTS: "5" ARTIFACT_DOWNLOAD_ATTEMPTS: "5" -.job-artifacts: &job-artifacts +.job-shared: &job-shared artifacts: paths: - logs when: always expire_in: 3 week + dependencies: [] # pre build @@ -24,14 +25,14 @@ clang-3.9: script: - ./tools/ci/jobs/clang39.sh image: debian:unstable - <<: *job-artifacts + <<: *job-shared gcc-5_c++11_i386: stage: prebuild script: - ./tools/ci/jobs/gcc5_c++11.sh image: vicamo/debian:sid-i386 - <<: *job-artifacts + <<: *job-shared tags: - docker @@ -40,14 +41,14 @@ gcc-6: script: - ./tools/ci/jobs/gcc6.sh image: debian:unstable - <<: *job-artifacts + <<: *job-shared gcc-6-i386: stage: prebuild script: - ./tools/ci/jobs/gcc6.sh image: vicamo/debian:sid-i386 - <<: *job-artifacts + <<: *job-shared tags: - docker @@ -56,56 +57,56 @@ gcc-4.4: script: - ./tools/ci/jobs/gcc44.sh image: debian:oldstable - <<: *job-artifacts + <<: *job-shared gcc-5_sdl2: stage: prebuild script: - ./tools/ci/jobs/gcc5_sdl2.sh image: debian:unstable - <<: *job-artifacts + <<: *job-shared mplint_po: stage: prebuild script: - ./tools/ci/jobs/mplint.sh po image: debian:unstable - <<: *job-artifacts + <<: *job-shared mplint_src: stage: prebuild script: - ./tools/ci/jobs/mplint.sh src image: debian:unstable - <<: *job-artifacts + <<: *job-shared mplint_data: stage: prebuild script: - ./tools/ci/jobs/mplint.sh data image: debian:unstable - <<: *job-artifacts + <<: *job-shared cpplint: stage: prebuild script: - ./tools/ci/jobs/cpplint.sh image: debian:unstable - <<: *job-artifacts + <<: *job-shared 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 - <<: *job-artifacts + <<: *job-shared 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 - <<: *job-artifacts + <<: *job-shared tags: - docker @@ -114,14 +115,14 @@ pngcheck: script: - ./tools/ci/jobs/pngcheck.sh image: debian:unstable - <<: *job-artifacts + <<: *job-shared icccheck: stage: prebuild script: - ./tools/ci/jobs/imagemagiccheck.sh image: debian:unstable - <<: *job-artifacts + <<: *job-shared # tests @@ -130,7 +131,7 @@ gcc-5_sanitize_tests: script: - ./tools/ci/jobs/gcc5_sanitize_tests.sh image: debian:unstable - <<: *job-artifacts + <<: *job-shared tags: - docker @@ -139,7 +140,7 @@ gcc-6_tests_simd: script: - ./tools/ci/jobs/gcc6_tests_simd.sh image: debian:unstable - <<: *job-artifacts + <<: *job-shared tags: - docker @@ -148,7 +149,7 @@ gcc-5_sanitize_tests_i386: script: - ./tools/ci/jobs/gcc5_sanitize_tests.sh image: vicamo/debian:sid-i386 - <<: *job-artifacts + <<: *job-shared tags: - docker @@ -157,7 +158,7 @@ gcc-5_sanitize_no_opengl_tests: script: - ./tools/ci/jobs/gcc5_sanitize_tests.sh --without-opengl image: debian:unstable - <<: *job-artifacts + <<: *job-shared tags: - docker @@ -166,7 +167,7 @@ gcc-5_sanitize_no_opengltests_i386: script: - ./tools/ci/jobs/gcc5_sanitize_tests.sh --without-opengl image: vicamo/debian:sid-i386 - <<: *job-artifacts + <<: *job-shared tags: - docker @@ -175,7 +176,7 @@ gcc-5_tests: script: - ./tools/ci/jobs/gcc5_tests.sh image: debian:unstable - <<: *job-artifacts + <<: *job-shared tags: - docker @@ -184,7 +185,7 @@ gcc-5_tests_i386: script: - ./tools/ci/jobs/gcc5_tests.sh image: vicamo/debian:sid-i386 - <<: *job-artifacts + <<: *job-shared tags: - docker @@ -193,7 +194,7 @@ gcc-6_tests_gcov: script: - ./tools/ci/jobs/gcc6_tests_gcov.sh image: debian:unstable - <<: *job-artifacts + <<: *job-shared tags: - docker @@ -202,7 +203,7 @@ gcc-6_tests_i386: script: - ./tools/ci/jobs/gcc6_tests.sh image: vicamo/debian:sid-i386 - <<: *job-artifacts + <<: *job-shared tags: - docker @@ -211,7 +212,7 @@ gcc-6_tests_no_opengl: script: - ./tools/ci/jobs/gcc6_tests.sh --without-opengl image: debian:unstable - <<: *job-artifacts + <<: *job-shared tags: - docker @@ -220,7 +221,7 @@ gcc-6_tests_no_opengl_i386: script: - ./tools/ci/jobs/gcc6_tests.sh --without-opengl image: vicamo/debian:sid-i386 - <<: *job-artifacts + <<: *job-shared tags: - docker @@ -229,7 +230,7 @@ gcc-6_sdl2_tests_gcov: script: - ./tools/ci/jobs/gcc6_sdl2_tests_gcov.sh image: debian:unstable - <<: *job-artifacts + <<: *job-shared tags: - docker @@ -238,7 +239,7 @@ gcc-6_sdl2_tests_i386: script: - ./tools/ci/jobs/gcc6_sdl2_tests.sh image: vicamo/debian:sid-i386 - <<: *job-artifacts + <<: *job-shared tags: - docker @@ -247,7 +248,7 @@ gcc-5_sdl2_tests: script: - ./tools/ci/jobs/gcc5_sdl2_tests.sh image: debian:unstable - <<: *job-artifacts + <<: *job-shared tags: - docker @@ -256,7 +257,7 @@ gcc-5_sdl2_tests_i386: script: - ./tools/ci/jobs/gcc5_sdl2_tests.sh image: vicamo/debian:sid-i386 - <<: *job-artifacts + <<: *job-shared tags: - docker @@ -265,7 +266,7 @@ gcc-5_sdl2_no_opengl_tests: script: - ./tools/ci/jobs/gcc5_sdl2_tests.sh --without-opengl image: debian:unstable - <<: *job-artifacts + <<: *job-shared tags: - docker @@ -274,7 +275,7 @@ gcc-5_sdl2_no_opengl_tests_i386: script: - ./tools/ci/jobs/gcc5_sdl2_tests.sh --without-opengl image: vicamo/debian:sid-i386 - <<: *job-artifacts + <<: *job-shared tags: - docker @@ -283,14 +284,14 @@ gcc-6_lto: script: - ./tools/ci/jobs/gcc6_lto.sh image: debian:unstable - <<: *job-artifacts + <<: *job-shared gcc-6_lto_i386: stage: build script: - ./tools/ci/jobs/gcc6_lto.sh image: vicamo/debian:sid-i386 - <<: *job-artifacts + <<: *job-shared tags: - docker @@ -299,7 +300,7 @@ gcc-5_tarball_tests: script: - ./tools/ci/jobs/gcc6_tarball_tests.sh image: debian:unstable - <<: *job-artifacts + <<: *job-shared # simple builds @@ -308,7 +309,7 @@ gcc-4.4_i386: script: - ./tools/ci/jobs/gcc44.sh image: vicamo/debian:oldstable-i386 - <<: *job-artifacts + <<: *job-shared tags: - docker @@ -317,7 +318,7 @@ gcc-4.5: script: - ./tools/ci/jobs/gcc45.sh image: ubuntu:12.04 - <<: *job-artifacts + <<: *job-shared tags: - docker @@ -326,14 +327,14 @@ gcc-4.6: script: - ./tools/ci/jobs/gcc46.sh image: debian:oldstable - <<: *job-artifacts + <<: *job-shared gcc-4.6_i386: stage: build script: - ./tools/ci/jobs/gcc46.sh image: vicamo/debian:oldstable-i386 - <<: *job-artifacts + <<: *job-shared tags: - docker @@ -342,7 +343,7 @@ gcc-4.7: script: - ./tools/ci/jobs/gcc47.sh image: debian:oldstable - <<: *job-artifacts + <<: *job-shared tags: - docker @@ -351,7 +352,7 @@ gcc-4.7_i386: script: - ./tools/ci/jobs/gcc47.sh image: vicamo/debian:oldstable-i386 - <<: *job-artifacts + <<: *job-shared tags: - docker @@ -360,7 +361,7 @@ gcc-4.7_c++11: script: - ./tools/ci/jobs/gcc47_c++11.sh image: debian:oldstable - <<: *job-artifacts + <<: *job-shared tags: - docker @@ -369,14 +370,14 @@ gcc-4.8: script: - ./tools/ci/jobs/gcc48.sh image: debian:stable - <<: *job-artifacts + <<: *job-shared gcc-4.8_i386: stage: build script: - ./tools/ci/jobs/gcc48.sh image: vicamo/debian:stable-i386 - <<: *job-artifacts + <<: *job-shared tags: - docker @@ -385,7 +386,7 @@ clang-3.0: script: - ./tools/ci/jobs/clang.sh clang image: debian:oldstable - <<: *job-artifacts + <<: *job-shared tags: - docker @@ -394,7 +395,7 @@ clang-3.0_i386: script: - ./tools/ci/jobs/clang.sh clang image: vicamo/debian:oldstable-i386 - <<: *job-artifacts + <<: *job-shared tags: - docker @@ -403,7 +404,7 @@ clang-3.3: script: - ./tools/ci/jobs/clang.sh clang-3.3 image: ubuntu:12.04 - <<: *job-artifacts + <<: *job-shared tags: - docker @@ -412,7 +413,7 @@ clang-3.3_i386: script: - ./tools/ci/jobs/clang.sh clang-3.3 image: vicamo/ubuntu:precise-i386 - <<: *job-artifacts + <<: *job-shared tags: - docker @@ -421,14 +422,14 @@ clang-3.4: script: - ./tools/ci/jobs/clang34.sh image: debian:stable - <<: *job-artifacts + <<: *job-shared clang-3.4_i386: stage: build script: - ./tools/ci/jobs/clang34.sh image: vicamo/debian:stable-i386 - <<: *job-artifacts + <<: *job-shared tags: - docker @@ -437,14 +438,14 @@ clang-3.5: script: - ./tools/ci/jobs/clang35.sh image: debian:stable - <<: *job-artifacts + <<: *job-shared clang-3.5_i386: stage: build script: - ./tools/ci/jobs/clang35.sh image: vicamo/debian:stable-i386 - <<: *job-artifacts + <<: *job-shared tags: - docker @@ -453,7 +454,7 @@ clang-3.6: script: - ./tools/ci/jobs/clang36.sh image: ubuntu:14.04 - <<: *job-artifacts + <<: *job-shared tags: - docker @@ -462,7 +463,7 @@ clang-3.6_i386: script: - ./tools/ci/jobs/clang36.sh image: vicamo/ubuntu:trusty-i386 - <<: *job-artifacts + <<: *job-shared tags: - docker @@ -471,7 +472,7 @@ clang-3.7: script: - ./tools/ci/jobs/clang37.sh image: ubuntu:16.04 - <<: *job-artifacts + <<: *job-shared tags: - docker @@ -480,7 +481,7 @@ clang-3.7_i386: script: - ./tools/ci/jobs/clang37.sh image: vicamo/ubuntu:xenial-i386 - <<: *job-artifacts + <<: *job-shared tags: - docker @@ -489,7 +490,7 @@ clang-3.8: script: - ./tools/ci/jobs/clang38.sh image: ubuntu:16.04 - <<: *job-artifacts + <<: *job-shared tags: - docker @@ -498,7 +499,7 @@ clang-3.8_i386: script: - ./tools/ci/jobs/clang38.sh image: vicamo/ubuntu:xenial-i386 - <<: *job-artifacts + <<: *job-shared tags: - docker @@ -507,14 +508,14 @@ clang-3.8_i386: script: - ./tools/ci/jobs/clang39.sh_c++11.sh image: debian:unstable - <<: *job-artifacts + <<: *job-shared .clang-3.9_c++11_i386: stage: build script: - ./tools/ci/jobs/clang39.sh_c++11.sh image: vicamo/debian:sid-i386 - <<: *job-artifacts + <<: *job-shared tags: - docker @@ -523,21 +524,21 @@ gcc-4.8_c++11: script: - ./tools/ci/jobs/gcc48_c++11.sh image: debian:stable - <<: *job-artifacts + <<: *job-shared gcc-4.9: stage: build script: - ./tools/ci/jobs/gcc49.sh image: debian:stable - <<: *job-artifacts + <<: *job-shared gcc-4.9_i386: stage: build script: - ./tools/ci/jobs/gcc49.sh image: vicamo/debian:stable-i386 - <<: *job-artifacts + <<: *job-shared tags: - docker @@ -546,14 +547,14 @@ gcc-4.9_c++11: script: - ./tools/ci/jobs/gcc49_c++11.sh image: debian:stable - <<: *job-artifacts + <<: *job-shared cmake_gcc-4.9: stage: build script: - ./tools/ci/jobs/cmake_gcc49.sh image: debian:stable - <<: *job-artifacts + <<: *job-shared tags: - docker @@ -562,7 +563,7 @@ cmake_gcc-4.9: script: - ./tools/ci/jobs/clang40.sh image: debian:unstable - <<: *job-artifacts + <<: *job-shared tags: - docker @@ -571,28 +572,28 @@ gcc-5: script: - ./tools/ci/jobs/gcc5.sh --enable-werror image: debian:unstable - <<: *job-artifacts + <<: *job-shared gcc-5_c++11: stage: build script: - ./tools/ci/jobs/gcc5_c++11.sh image: debian:unstable - <<: *job-artifacts + <<: *job-shared gcc-5_sdl2_c++11: stage: build script: - ./tools/ci/jobs/gcc5_sdl2_c++11.sh image: debian:unstable - <<: *job-artifacts + <<: *job-shared gcc-5_sdl2_c++11_i386: stage: build script: - ./tools/ci/jobs/gcc5_sdl2_c++11.sh image: vicamo/debian:sid-i386 - <<: *job-artifacts + <<: *job-shared tags: - docker @@ -601,14 +602,14 @@ gcc-snapshot: script: - ./tools/ci/jobs/gccsnapshot.sh image: debian:unstable - <<: *job-artifacts + <<: *job-shared gcc-snapshot_i386: stage: build script: - ./tools/ci/jobs/gccsnapshot.sh image: vicamo/debian:sid-i386 - <<: *job-artifacts + <<: *job-shared tags: - docker @@ -617,14 +618,14 @@ gcc-snapshot_sdl2: script: - ./tools/ci/jobs/gccsnapshot_sdl2.sh image: debian:unstable - <<: *job-artifacts + <<: *job-shared gcc-snapshot_sdl2_i386: stage: build script: - ./tools/ci/jobs/gccsnapshot_sdl2.sh image: vicamo/debian:sid-i386 - <<: *job-artifacts + <<: *job-shared tags: - docker @@ -633,7 +634,7 @@ gcc-5_sanitize: script: - ./tools/ci/jobs/gcc5_sanitize.sh image: debian:unstable - <<: *job-artifacts + <<: *job-shared tags: - docker @@ -642,7 +643,7 @@ gcc-6_sanitize: script: - ./tools/ci/jobs/gcc6_sanitize.sh image: debian:unstable - <<: *job-artifacts + <<: *job-shared tags: - docker @@ -651,7 +652,7 @@ gcc-6_sanitize_i386: script: - ./tools/ci/jobs/gcc6_sanitize.sh image: vicamo/debian:sid-i386 - <<: *job-artifacts + <<: *job-shared tags: - docker @@ -660,112 +661,112 @@ gcc_eathena: script: - ./tools/ci/jobs/gcc6.sh --without-opengl --disable-tmwa image: debian:unstable - <<: *job-artifacts + <<: *job-shared gcc_without_mumble: stage: build script: - ./tools/ci/jobs/gcc5.sh --without-mumble --enable-werror image: debian:unstable - <<: *job-artifacts + <<: *job-shared gcc_without_customnls: stage: build script: - ./tools/ci/jobs/gcc5.sh --enable-customnls --enable-werror image: debian:unstable - <<: *job-artifacts + <<: *job-shared gcc_without_customnls_nonls: stage: build script: - ./tools/ci/jobs/gcc5.sh --enable-customnls --disable-nls --enable-werror image: debian:unstable - <<: *job-artifacts + <<: *job-shared gcc_without_opengl: stage: build script: - ./tools/ci/jobs/gcc5.sh --without-opengl --enable-werror image: debian:unstable - <<: *job-artifacts + <<: *job-shared gcc49_cilkplus: stage: build script: - ./tools/ci/jobs/gcc49.sh --enable-cilkplus image: debian:stable - <<: *job-artifacts + <<: *job-shared gcc-5_cilkplus: stage: build script: - ./tools/ci/jobs/gcc5.sh --enable-cilkplus image: debian:unstable - <<: *job-artifacts + <<: *job-shared gcc-6_cilkplus: stage: build script: - ./tools/ci/jobs/gcc6.sh --enable-cilkplus image: debian:unstable - <<: *job-artifacts + <<: *job-shared gcc_eathena_opengl: stage: build script: - ./tools/ci/jobs/gcc6.sh --with-opengl --disable-tmwa image: debian:unstable - <<: *job-artifacts + <<: *job-shared gcc_eathena_opengl_sdl2: stage: build script: - ./tools/ci/jobs/gcc5_sdl2.sh --with-opengl --disable-tmwa image: debian:unstable - <<: *job-artifacts + <<: *job-shared gcc_eathena_sdl2: stage: build script: - ./tools/ci/jobs/gcc5_sdl2.sh --without-opengl --disable-tmwa image: debian:unstable - <<: *job-artifacts + <<: *job-shared gcc_portable: stage: build script: - ./tools/ci/jobs/gcc6.sh --with-opengl --enable-tmwa --enable-portable=yes image: debian:unstable - <<: *job-artifacts + <<: *job-shared gcc_eathena_c++11: stage: build script: - ./tools/ci/jobs/gcc5_c++11.sh --without-opengl --disable-tmwa image: debian:unstable - <<: *job-artifacts + <<: *job-shared gcc_eathena_sdl2_c++11: stage: build script: - ./tools/ci/jobs/gcc5_sdl2_c++11.sh --without-opengl --disable-tmwa image: debian:unstable - <<: *job-artifacts + <<: *job-shared clang-3.9_sdl2: stage: build script: - ./tools/ci/jobs/clang39_sdl2.sh image: debian:unstable - <<: *job-artifacts + <<: *job-shared gcc-6_no_asserts: stage: build script: - ./tools/ci/jobs/gcc6.sh --disable-asserts image: debian:unstable - <<: *job-artifacts + <<: *job-shared # different tools @@ -774,21 +775,21 @@ gcc-5_h_eathena_tmwa: script: - ./tools/ci/jobs/gcc5_h.sh -std=c++0x -DDEBUGBUILD -DTMWA_SUPPORT -DENABLE_LIBXML image: debian:unstable - <<: *job-artifacts + <<: *job-shared 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 - <<: *job-artifacts + <<: *job-shared gcc-5_tarball: stage: build script: - ./tools/ci/jobs/gcc5_tarball.sh image: debian:unstable - <<: *job-artifacts + <<: *job-shared # deheader default @@ -803,7 +804,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_gui_windows_cpp: stage: build @@ -816,7 +817,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 - <<: *job-artifacts + <<: *job-shared deheader_gui_windows_withoutopengl_cpp: stage: build @@ -829,7 +830,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_gui_windows_withoutopengl_cpp: stage: build @@ -842,7 +843,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 - <<: *job-artifacts + <<: *job-shared deheader_gui_widgets_cpp: stage: build @@ -855,7 +856,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_gui_widgets_cpp: stage: build @@ -868,7 +869,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 - <<: *job-artifacts + <<: *job-shared deheader_gui_widgets_withoutopengl_cpp: stage: build @@ -881,7 +882,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_gui_widgets_withoutopengl_cpp: stage: build @@ -894,7 +895,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 - <<: *job-artifacts + <<: *job-shared deheader_gui_models_cpp: stage: build @@ -907,7 +908,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_gui_models_cpp: stage: build @@ -920,7 +921,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 - <<: *job-artifacts + <<: *job-shared deheader_gui_models_withoutopengl_cpp: stage: build @@ -933,7 +934,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_gui_models_withoutopengl_cpp: stage: build @@ -946,7 +947,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 - <<: *job-artifacts + <<: *job-shared deheader_actions_cpp: stage: build @@ -959,7 +960,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 - <<: *job-artifacts + <<: *job-shared deheader_actions_h: stage: build @@ -972,7 +973,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 - <<: *job-artifacts + <<: *job-shared deheader_being_cpp: stage: build @@ -985,7 +986,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 - <<: *job-artifacts + <<: *job-shared deheader_being_h: stage: build @@ -998,7 +999,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 - <<: *job-artifacts + <<: *job-shared deheader_const_h: stage: build @@ -1011,7 +1012,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 - <<: *job-artifacts + <<: *job-shared deheader_dyetool_cpp: stage: build @@ -1024,7 +1025,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 - <<: *job-artifacts + <<: *job-shared deheader_dyetool_h: stage: build @@ -1037,7 +1038,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 - <<: *job-artifacts + <<: *job-shared deheader_enums_h: stage: build @@ -1050,7 +1051,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 - <<: *job-artifacts + <<: *job-shared deheader_events_h: stage: build @@ -1063,7 +1064,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 - <<: *job-artifacts + <<: *job-shared deheader_gui_fonts_cpp: stage: build @@ -1076,7 +1077,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 - <<: *job-artifacts + <<: *job-shared deheader_gui_fonts_h: stage: build @@ -1089,7 +1090,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 - <<: *job-artifacts + <<: *job-shared deheader_gui_models_h: stage: build @@ -1102,7 +1103,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 - <<: *job-artifacts + <<: *job-shared deheader_gui_popups_cpp: stage: build @@ -1115,7 +1116,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 - <<: *job-artifacts + <<: *job-shared deheader_gui_popups_h: stage: build @@ -1128,7 +1129,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 - <<: *job-artifacts + <<: *job-shared deheader_gui_shortcut_cpp: stage: build @@ -1141,7 +1142,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 - <<: *job-artifacts + <<: *job-shared deheader_gui_shortcut_h: stage: build @@ -1154,7 +1155,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 - <<: *job-artifacts + <<: *job-shared deheader_gui_widgets_h: stage: build @@ -1167,7 +1168,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 - <<: *job-artifacts + <<: *job-shared deheader_gui_windows_h: stage: build @@ -1180,7 +1181,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 - <<: *job-artifacts + <<: *job-shared deheader_gui_cpp: stage: build @@ -1193,7 +1194,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 - <<: *job-artifacts + <<: *job-shared deheader_gui_h: stage: build @@ -1206,7 +1207,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 - <<: *job-artifacts + <<: *job-shared deheader_input_cpp: stage: build @@ -1219,7 +1220,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 - <<: *job-artifacts + <<: *job-shared deheader_input_h: stage: build @@ -1232,7 +1233,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 - <<: *job-artifacts + <<: *job-shared deheader_listeners_cpp: stage: build @@ -1245,7 +1246,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 - <<: *job-artifacts + <<: *job-shared deheader_listeners_h: stage: build @@ -1258,7 +1259,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 - <<: *job-artifacts + <<: *job-shared deheader_net_ea_cpp: stage: build @@ -1271,7 +1272,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 - <<: *job-artifacts + <<: *job-shared deheader_net_ea_h: stage: build @@ -1284,7 +1285,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 - <<: *job-artifacts + <<: *job-shared deheader_net_eathena_cpp: stage: build @@ -1297,7 +1298,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 - <<: *job-artifacts + <<: *job-shared deheader_net_eathena_h: stage: build @@ -1310,7 +1311,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 - <<: *job-artifacts + <<: *job-shared deheader_net_tmwa_cpp: stage: build @@ -1323,7 +1324,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 - <<: *job-artifacts + <<: *job-shared deheader_net_tmwa_h: stage: build @@ -1336,7 +1337,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 - <<: *job-artifacts + <<: *job-shared deheader_net_cpp: stage: build @@ -1349,7 +1350,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 - <<: *job-artifacts + <<: *job-shared deheader_net_h: stage: build @@ -1362,7 +1363,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 - <<: *job-artifacts + <<: *job-shared deheader_particle_cpp: stage: build @@ -1375,7 +1376,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 - <<: *job-artifacts + <<: *job-shared deheader_particle_h: stage: build @@ -1388,7 +1389,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 - <<: *job-artifacts + <<: *job-shared deheader_render_cpp: stage: build @@ -1401,7 +1402,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 - <<: *job-artifacts + <<: *job-shared deheader_render_h: stage: build @@ -1414,7 +1415,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 - <<: *job-artifacts + <<: *job-shared deheader_resources_db_cpp: stage: build @@ -1427,7 +1428,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 - <<: *job-artifacts + <<: *job-shared deheader_resources_db_h: stage: build @@ -1440,7 +1441,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 - <<: *job-artifacts + <<: *job-shared deheader_resources_map_cpp: stage: build @@ -1453,7 +1454,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 - <<: *job-artifacts + <<: *job-shared deheader_resources_map_h: stage: build @@ -1466,7 +1467,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 - <<: *job-artifacts + <<: *job-shared deheader_resources_cpp: stage: build @@ -1479,7 +1480,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 - <<: *job-artifacts + <<: *job-shared deheader_resources_h: stage: build @@ -1492,7 +1493,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 - <<: *job-artifacts + <<: *job-shared deheader_test_cpp: stage: build @@ -1505,7 +1506,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 - <<: *job-artifacts + <<: *job-shared deheader_test_h: stage: build @@ -1518,7 +1519,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 - <<: *job-artifacts + <<: *job-shared deheader_utils_cpp: stage: build @@ -1531,7 +1532,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 - <<: *job-artifacts + <<: *job-shared deheader_utils_h: stage: build @@ -1544,7 +1545,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 - <<: *job-artifacts + <<: *job-shared deheader_cpp: stage: build @@ -1557,7 +1558,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 - <<: *job-artifacts + <<: *job-shared deheader_h: stage: build @@ -1570,7 +1571,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 - <<: *job-artifacts + <<: *job-shared deheader_cc: stage: build @@ -1583,7 +1584,7 @@ deheader_cc: - find ./src -type f -name "*.cc" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - <<: *job-artifacts + <<: *job-shared # deheader sdl2 @@ -1598,7 +1599,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_actions_h: stage: build @@ -1611,7 +1612,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_being_cpp: stage: build @@ -1624,7 +1625,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_being_h: stage: build @@ -1637,7 +1638,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_const_h: stage: build @@ -1650,7 +1651,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_dyetool_cpp: stage: build @@ -1663,7 +1664,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_dyetool_h: stage: build @@ -1676,7 +1677,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_enums_h: stage: build @@ -1689,7 +1690,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_events_h: stage: build @@ -1702,7 +1703,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_gui_fonts_cpp: stage: build @@ -1715,7 +1716,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_gui_fonts_h: stage: build @@ -1728,7 +1729,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_gui_models_h: stage: build @@ -1741,7 +1742,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_gui_popups_cpp: stage: build @@ -1754,7 +1755,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_gui_popups_h: stage: build @@ -1767,7 +1768,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_gui_shortcut_cpp: stage: build @@ -1780,7 +1781,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_gui_shortcut_h: stage: build @@ -1793,7 +1794,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_gui_widgets_h: stage: build @@ -1806,7 +1807,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_gui_windows_h: stage: build @@ -1819,7 +1820,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_gui_cpp: stage: build @@ -1832,7 +1833,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_gui_h: stage: build @@ -1845,7 +1846,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_input_cpp: stage: build @@ -1858,7 +1859,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_input_h: stage: build @@ -1871,7 +1872,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_listeners_cpp: stage: build @@ -1884,7 +1885,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_listeners_h: stage: build @@ -1897,7 +1898,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_net_ea_cpp: stage: build @@ -1910,7 +1911,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_net_ea_h: stage: build @@ -1923,7 +1924,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_net_eathena_cpp: stage: build @@ -1936,7 +1937,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_net_eathena_h: stage: build @@ -1949,7 +1950,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_net_tmwa_cpp: stage: build @@ -1962,7 +1963,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_net_tmwa_h: stage: build @@ -1975,7 +1976,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_net_cpp: stage: build @@ -1988,7 +1989,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_net_h: stage: build @@ -2001,7 +2002,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_particle_cpp: stage: build @@ -2014,7 +2015,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_particle_h: stage: build @@ -2027,7 +2028,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_render_cpp: stage: build @@ -2040,7 +2041,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_render_h: stage: build @@ -2053,7 +2054,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_resources_db_cpp: stage: build @@ -2066,7 +2067,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_resources_db_h: stage: build @@ -2079,7 +2080,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_resources_map_cpp: stage: build @@ -2092,7 +2093,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_resources_map_h: stage: build @@ -2105,7 +2106,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_resources_cpp: stage: build @@ -2118,7 +2119,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_resources_h: stage: build @@ -2131,7 +2132,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_test_cpp: stage: build @@ -2144,7 +2145,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_test_h: stage: build @@ -2157,7 +2158,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_utils_cpp: stage: build @@ -2170,7 +2171,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_utils_h: stage: build @@ -2183,7 +2184,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_cpp: stage: build @@ -2196,7 +2197,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_h: stage: build @@ -2209,7 +2210,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_cc: stage: build @@ -2222,7 +2223,7 @@ deheader_sdl2_cc: - find ./src -type f -name "*.cc" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - <<: *job-artifacts + <<: *job-shared # dehedeart without opengl @@ -2237,7 +2238,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 - <<: *job-artifacts + <<: *job-shared deheader_actions_withoutopengl_h: stage: build @@ -2250,7 +2251,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 - <<: *job-artifacts + <<: *job-shared deheader_being_withoutopengl_cpp: stage: build @@ -2263,7 +2264,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 - <<: *job-artifacts + <<: *job-shared deheader_being_withoutopengl_h: stage: build @@ -2276,7 +2277,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 - <<: *job-artifacts + <<: *job-shared deheader_const_withoutopengl_h: stage: build @@ -2289,7 +2290,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 - <<: *job-artifacts + <<: *job-shared deheader_dyetool_withoutopengl_cpp: stage: build @@ -2302,7 +2303,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 - <<: *job-artifacts + <<: *job-shared deheader_dyetool_withoutopengl_h: stage: build @@ -2315,7 +2316,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 - <<: *job-artifacts + <<: *job-shared deheader_enums_withoutopengl_h: stage: build @@ -2328,7 +2329,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 - <<: *job-artifacts + <<: *job-shared deheader_events_withoutopengl_h: stage: build @@ -2341,7 +2342,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 - <<: *job-artifacts + <<: *job-shared deheader_gui_fonts_withoutopengl_cpp: stage: build @@ -2354,7 +2355,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 - <<: *job-artifacts + <<: *job-shared deheader_gui_fonts_withoutopengl_h: stage: build @@ -2367,7 +2368,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 - <<: *job-artifacts + <<: *job-shared deheader_gui_models_withoutopengl_h: stage: build @@ -2380,7 +2381,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 - <<: *job-artifacts + <<: *job-shared deheader_gui_popups_withoutopengl_cpp: stage: build @@ -2393,7 +2394,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 - <<: *job-artifacts + <<: *job-shared deheader_gui_popups_withoutopengl_h: stage: build @@ -2406,7 +2407,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 - <<: *job-artifacts + <<: *job-shared deheader_gui_shortcut_withoutopengl_cpp: stage: build @@ -2419,7 +2420,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 - <<: *job-artifacts + <<: *job-shared deheader_gui_shortcut_withoutopengl_h: stage: build @@ -2432,7 +2433,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 - <<: *job-artifacts + <<: *job-shared deheader_gui_widgets_withoutopengl_h: stage: build @@ -2445,7 +2446,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 - <<: *job-artifacts + <<: *job-shared deheader_gui_windows_withoutopengl_h: stage: build @@ -2458,7 +2459,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 - <<: *job-artifacts + <<: *job-shared deheader_gui_withoutopengl_cpp: stage: build @@ -2471,7 +2472,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 - <<: *job-artifacts + <<: *job-shared deheader_gui_withoutopengl_h: stage: build @@ -2484,7 +2485,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 - <<: *job-artifacts + <<: *job-shared deheader_input_withoutopengl_cpp: stage: build @@ -2497,7 +2498,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 - <<: *job-artifacts + <<: *job-shared deheader_input_withoutopengl_h: stage: build @@ -2510,7 +2511,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 - <<: *job-artifacts + <<: *job-shared deheader_listeners_withoutopengl_cpp: stage: build @@ -2523,7 +2524,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 - <<: *job-artifacts + <<: *job-shared deheader_listeners_withoutopengl_h: stage: build @@ -2536,7 +2537,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 - <<: *job-artifacts + <<: *job-shared deheader_net_ea_withoutopengl_cpp: stage: build @@ -2549,7 +2550,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 - <<: *job-artifacts + <<: *job-shared deheader_net_ea_withoutopengl_h: stage: build @@ -2562,7 +2563,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 - <<: *job-artifacts + <<: *job-shared deheader_net_eathena_withoutopengl_cpp: stage: build @@ -2575,7 +2576,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 - <<: *job-artifacts + <<: *job-shared deheader_net_eathena_withoutopengl_h: stage: build @@ -2588,7 +2589,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 - <<: *job-artifacts + <<: *job-shared deheader_net_tmwa_withoutopengl_cpp: stage: build @@ -2601,7 +2602,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 - <<: *job-artifacts + <<: *job-shared deheader_net_tmwa_withoutopengl_h: stage: build @@ -2614,7 +2615,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 - <<: *job-artifacts + <<: *job-shared deheader_net_withoutopengl_cpp: stage: build @@ -2627,7 +2628,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 - <<: *job-artifacts + <<: *job-shared deheader_net_withoutopengl_h: stage: build @@ -2640,7 +2641,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 - <<: *job-artifacts + <<: *job-shared deheader_particle_withoutopengl_cpp: stage: build @@ -2653,7 +2654,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 - <<: *job-artifacts + <<: *job-shared deheader_particle_withoutopengl_h: stage: build @@ -2666,7 +2667,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 - <<: *job-artifacts + <<: *job-shared deheader_render_withoutopengl_cpp: stage: build @@ -2679,7 +2680,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 - <<: *job-artifacts + <<: *job-shared deheader_render_withoutopengl_h: stage: build @@ -2692,7 +2693,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 - <<: *job-artifacts + <<: *job-shared deheader_resources_db_withoutopengl_cpp: stage: build @@ -2705,7 +2706,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 - <<: *job-artifacts + <<: *job-shared deheader_resources_db_withoutopengl_h: stage: build @@ -2718,7 +2719,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 - <<: *job-artifacts + <<: *job-shared deheader_resources_map_withoutopengl_cpp: stage: build @@ -2731,7 +2732,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 - <<: *job-artifacts + <<: *job-shared deheader_resources_map_withoutopengl_h: stage: build @@ -2744,7 +2745,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 - <<: *job-artifacts + <<: *job-shared deheader_resources_withoutopengl_cpp: stage: build @@ -2757,7 +2758,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 - <<: *job-artifacts + <<: *job-shared deheader_resources_withoutopengl_h: stage: build @@ -2770,7 +2771,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 - <<: *job-artifacts + <<: *job-shared deheader_test_withoutopengl_cpp: stage: build @@ -2783,7 +2784,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 - <<: *job-artifacts + <<: *job-shared deheader_test_withoutopengl_h: stage: build @@ -2796,7 +2797,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 - <<: *job-artifacts + <<: *job-shared deheader_utils_withoutopengl_cpp: stage: build @@ -2809,7 +2810,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 - <<: *job-artifacts + <<: *job-shared deheader_utils_withoutopengl_h: stage: build @@ -2822,7 +2823,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 - <<: *job-artifacts + <<: *job-shared deheader_withoutopengl_cpp: stage: build @@ -2835,7 +2836,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 - <<: *job-artifacts + <<: *job-shared deheader_withoutopengl_h: stage: build @@ -2848,7 +2849,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 - <<: *job-artifacts + <<: *job-shared deheader_withoutopengl_cc: stage: build @@ -2861,7 +2862,7 @@ deheader_withoutopengl_cc: - find ./src -type f -name "*.cc" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh image: debian:unstable - <<: *job-artifacts + <<: *job-shared # deheader sdl2 @@ -2876,7 +2877,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_actions_withoutopengl_h: stage: build @@ -2889,7 +2890,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_being_withoutopengl_cpp: stage: build @@ -2902,7 +2903,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_being_withoutopengl_h: stage: build @@ -2915,7 +2916,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_const_withoutopengl_h: stage: build @@ -2928,7 +2929,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_dyetool_withoutopengl_cpp: stage: build @@ -2941,7 +2942,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_dyetool_withoutopengl_h: stage: build @@ -2954,7 +2955,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_enums_withoutopengl_h: stage: build @@ -2967,7 +2968,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_events_withoutopengl_h: stage: build @@ -2980,7 +2981,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_gui_fonts_withoutopengl_cpp: stage: build @@ -2993,7 +2994,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_gui_fonts_withoutopengl_h: stage: build @@ -3006,7 +3007,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_gui_models_withoutopengl_h: stage: build @@ -3019,7 +3020,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_gui_popups_withoutopengl_cpp: stage: build @@ -3032,7 +3033,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_gui_popups_withoutopengl_h: stage: build @@ -3045,7 +3046,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_gui_shortcut_withoutopengl_cpp: stage: build @@ -3058,7 +3059,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_gui_shortcut_withoutopengl_h: stage: build @@ -3071,7 +3072,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_gui_widgets_withoutopengl_h: stage: build @@ -3084,7 +3085,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_gui_windows_withoutopengl_h: stage: build @@ -3097,7 +3098,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_gui_withoutopengl_cpp: stage: build @@ -3110,7 +3111,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_gui_withoutopengl_h: stage: build @@ -3123,7 +3124,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_input_withoutopengl_cpp: stage: build @@ -3136,7 +3137,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_input_withoutopengl_h: stage: build @@ -3149,7 +3150,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_listeners_withoutopengl_cpp: stage: build @@ -3162,7 +3163,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_listeners_withoutopengl_h: stage: build @@ -3175,7 +3176,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_net_ea_withoutopengl_cpp: stage: build @@ -3188,7 +3189,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_net_ea_withoutopengl_h: stage: build @@ -3201,7 +3202,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_net_eathena_withoutopengl_cpp: stage: build @@ -3214,7 +3215,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_net_eathena_withoutopengl_h: stage: build @@ -3227,7 +3228,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_net_tmwa_withoutopengl_cpp: stage: build @@ -3240,7 +3241,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_net_tmwa_withoutopengl_h: stage: build @@ -3253,7 +3254,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_net_withoutopengl_cpp: stage: build @@ -3266,7 +3267,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_net_withoutopengl_h: stage: build @@ -3279,7 +3280,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_particle_withoutopengl_cpp: stage: build @@ -3292,7 +3293,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_particle_withoutopengl_h: stage: build @@ -3305,7 +3306,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_render_withoutopengl_cpp: stage: build @@ -3318,7 +3319,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_render_withoutopengl_h: stage: build @@ -3331,7 +3332,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_resources_db_withoutopengl_cpp: stage: build @@ -3344,7 +3345,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_resources_db_withoutopengl_h: stage: build @@ -3357,7 +3358,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_resources_map_withoutopengl_cpp: stage: build @@ -3370,7 +3371,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_resources_map_withoutopengl_h: stage: build @@ -3383,7 +3384,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_resources_withoutopengl_cpp: stage: build @@ -3396,7 +3397,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_resources_withoutopengl_h: stage: build @@ -3409,7 +3410,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_test_withoutopengl_cpp: stage: build @@ -3422,7 +3423,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_test_withoutopengl_h: stage: build @@ -3435,7 +3436,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_utils_withoutopengl_cpp: stage: build @@ -3448,7 +3449,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_utils_withoutopengl_h: stage: build @@ -3461,7 +3462,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_withoutopengl_cpp: stage: build @@ -3474,7 +3475,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_withoutopengl_h: stage: build @@ -3487,7 +3488,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 - <<: *job-artifacts + <<: *job-shared deheader_sdl2_withoutopengl_cc: stage: build @@ -3500,7 +3501,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 - <<: *job-artifacts + <<: *job-shared doxygen: stage: build @@ -3512,6 +3513,7 @@ doxygen: - doxygen expire_in: 3 week when: always + dependencies: [] tags: - docker only: @@ -3527,6 +3529,7 @@ gitstats: - stats expire_in: 3 week when: always + dependencies: [] tags: - docker only: -- cgit v1.2.3-70-g09d2