diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-04-18 05:00:05 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-04-18 05:00:05 +0300 |
commit | 630f0815458c8cbc8f702e12b92153000fd32bcc (patch) | |
tree | af8c67b6b727ec1f85fbad96c8927ab8759adfac /.gitlab-ci.yml | |
parent | d520700b9a6b1f3b698067228e5971a3be6dfc32 (diff) | |
download | plus-630f0815458c8cbc8f702e12b92153000fd32bcc.tar.gz plus-630f0815458c8cbc8f702e12b92153000fd32bcc.tar.bz2 plus-630f0815458c8cbc8f702e12b92153000fd32bcc.tar.xz plus-630f0815458c8cbc8f702e12b92153000fd32bcc.zip |
Rename job-shared into job-push in .gitlab-ci.yml
Deny run most jobs with triggers.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 748 |
1 files changed, 383 insertions, 365 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3d50fc1b0..b3a086a6a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -23,7 +23,17 @@ variables: PMUPDATE: "apt-get update" PMINSTALL: "apt-get install -y -qq" -.job-shared: &job-shared +.job-push: &job-push + artifacts: + paths: + - logs + when: always + expire_in: 3 week + except: + - triggers + dependencies: [] + +.job-always: &job-always artifacts: paths: - logs @@ -58,7 +68,7 @@ gcc-5_c++11_i386: script: - ./tools/ci/jobs/gcc5_c++11.sh image: vicamo/debian:sid-i386 - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-5 g++-5 make autoconf automake autopoint gettext @@ -72,7 +82,7 @@ gcc-6-i386: script: - ./tools/ci/jobs/gcc6.sh image: vicamo/debian:sid-i386 - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-6 g++-6 make autoconf automake autopoint gettext @@ -85,7 +95,7 @@ clang-3.9: stage: prebuild script: - ./tools/ci/jobs/clang39.sh - <<: *job-shared + <<: *job-push variables: PACKAGES: clang-3.9 libc++-dev libc++abi-dev make autoconf automake autopoint gettext @@ -96,7 +106,7 @@ gcc-6: stage: prebuild script: - ./tools/ci/jobs/gcc6.sh - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-6 g++-6 make autoconf automake autopoint gettext @@ -108,7 +118,7 @@ gcc-4.4: script: - ./tools/ci/jobs/gcc44.sh image: debian:oldstable - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-4.4 g++-4.4 make autoconf automake autopoint gettext @@ -122,7 +132,7 @@ mxe_gcc5_shared_32: script: - ls /mxe - ./tools/ci/jobs/mxe_gcc5.sh - <<: *job-shared + <<: *job-push image: registry.gitlab.com/manaplus/mxe:gcc5_shared_32 variables: PACKAGES: bash @@ -135,7 +145,7 @@ mxe_gcc5_shared_64: script: - ls /mxe - ./tools/ci/jobs/mxe_gcc5.sh - <<: *job-shared + <<: *job-push image: registry.gitlab.com/manaplus/mxe:gcc5_shared_64 variables: PACKAGES: bash @@ -159,6 +169,8 @@ mxe_gcc5_shared_32_testsbin: variables: PACKAGES: bash CROSS: i686-w64-mingw32.shared + except: + - triggers tags: - docker @@ -178,6 +190,8 @@ mxe_gcc5_shared_64_testsbin: variables: PACKAGES: bash CROSS: x86_64-w64-mingw32.shared + except: + - triggers tags: - docker @@ -185,7 +199,7 @@ gcc-5_sdl2: stage: prebuild script: - ./tools/ci/jobs/gcc5_sdl2.sh - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-5 g++-5 make autoconf automake autopoint gettext @@ -196,7 +210,7 @@ gcc-6_game_only: stage: prebuild script: - ./tools/ci/jobs/gcc6.sh --without-dyecmd - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-6 g++-6 make autoconf automake autopoint gettext @@ -207,7 +221,7 @@ gcc-6_dyecmd_only: stage: prebuild script: - ./tools/ci/jobs/gcc6.sh --without-manaplusgame - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-6 g++-6 make autoconf automake autopoint gettext @@ -218,7 +232,7 @@ gcc-6_unittestsbin: stage: prebuild script: - ./tools/ci/jobs/gcc6_silent.sh --enable-unittestsbin --without-manaplusgame --without-dyecmd - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-6 g++-6 make autoconf automake autopoint gettext @@ -229,7 +243,7 @@ mplint_po: stage: prebuild script: - ./tools/ci/jobs/mplint.sh po - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc g++ git make autoconf automake autopoint gettext @@ -238,7 +252,7 @@ mplint_src: stage: prebuild script: - ./tools/ci/jobs/mplint.sh src - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc g++ git make autoconf automake autopoint gettext @@ -247,7 +261,7 @@ mplint_data: stage: prebuild script: - ./tools/ci/jobs/mplint.sh data - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc g++ git make autoconf automake autopoint gettext @@ -256,7 +270,7 @@ cpplint: stage: prebuild script: - ./tools/ci/jobs/cpplint.sh - <<: *job-shared + <<: *job-push variables: PACKAGES: python wget @@ -264,7 +278,7 @@ 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 - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-5 g++-5 make autoconf automake autopoint gettext @@ -276,7 +290,7 @@ gcc-5_h_all_i386: 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-shared + <<: *job-push variables: PACKAGES: gcc-5 g++-5 make autoconf automake autopoint gettext @@ -289,7 +303,7 @@ pngcheck: stage: prebuild script: - ./tools/ci/jobs/pngcheck.sh - <<: *job-shared + <<: *job-push variables: PACKAGES: pngcheck @@ -297,7 +311,7 @@ icccheck: stage: prebuild script: - ./tools/ci/jobs/imagemagiccheck.sh - <<: *job-shared + <<: *job-push variables: PACKAGES: imagemagick @@ -315,7 +329,7 @@ icccheck: - export LD_PRELOAD - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ${runenvx} ${runenvz} ./tools/ci/scripts/checkldd.sh src/manaplustests - ldd ./src/manaplustests | grep "libasan" - <<: *job-shared + <<: *job-push variables: LIBNAME: SDL LIBVERSION: SDL-1.2_asan @@ -340,7 +354,7 @@ icccheck: - export LD_PRELOAD - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ${runenvx} ${runenvz} ./tools/ci/scripts/checkldd.sh src/manaplustests - ldd ./src/manaplustests | grep "libasan" - <<: *job-shared + <<: *job-push variables: LIBNAME: SDL LIBVERSION: default_asan @@ -360,7 +374,7 @@ gcc-5_sanitize_tests: script: - ./tools/ci/jobs/gcc5_sanitize_tests.sh - ldd ./src/manaplustests | grep "libasan" - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-5 g++-5 make autoconf automake autopoint gettext @@ -376,7 +390,7 @@ gcc-5_sanitize_tests_i386: - ./tools/ci/jobs/gcc5_sanitize_tests.sh --without-dyecmd --without-manaplusgame - ldd ./src/manaplustests | grep "libasan" image: vicamo/debian:sid-i386 - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-5 g++-5 make autoconf automake autopoint gettext @@ -391,7 +405,7 @@ gcc-5_sanitize_no_opengl_tests: script: - ./tools/ci/jobs/gcc5_sanitize_tests.sh --without-opengl --without-dyecmd --without-manaplusgame - ldd ./src/manaplustests | grep "libasan" - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-5 g++-5 make autoconf automake autopoint gettext @@ -407,7 +421,7 @@ gcc-5_sanitize_no_opengltests_i386: - ./tools/ci/jobs/gcc5_sanitize_tests.sh --without-opengl --without-dyecmd --without-manaplusgame - ldd ./src/manaplustests | grep "libasan" image: vicamo/debian:sid-i386 - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-5 g++-5 make autoconf automake autopoint gettext @@ -422,7 +436,7 @@ gcc-5_sanitize: stage: build script: - ./tools/ci/jobs/gcc5_sanitize.sh - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-5 g++-5 make autoconf automake autopoint gettext @@ -435,7 +449,7 @@ gcc-6_sanitize: stage: build script: - ./tools/ci/jobs/gcc6_sanitize.sh - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-6 g++-6 make autoconf automake autopoint gettext @@ -449,7 +463,7 @@ gcc-6_sanitize_i386: script: - ./tools/ci/jobs/gcc6_sanitize.sh image: vicamo/debian:sid-i386 - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-6 g++-6 make autoconf automake autopoint gettext @@ -463,7 +477,7 @@ gcc-6_sanitize_i386: script: - ./tools/ci/jobs/gccsnapshot_sanitize_tests.sh --without-dyecmd --without-manaplusgame - ldd ./src/manaplustests | grep "libasan" - <<: *job-shared + <<: *job-push image: fedora:rawhide variables: PMUPDATE: "dnf install --refresh -y @development-tools" @@ -476,7 +490,7 @@ gcc-6_sanitize_i386: script: - ./tools/ci/jobs/gccsnapshot_sanitize_tests.sh --with-sdl2 --without-dyecmd --without-manaplusgame - ldd ./src/manaplustests | grep "libasan" - <<: *job-shared + <<: *job-push image: fedora:rawhide variables: PMUPDATE: "dnf install --refresh -y @development-tools" @@ -494,7 +508,7 @@ gcc-6_SDL_SDL-1.2_sanitize_test: - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ${runenvx} ${runenvz} ./tools/ci/jobs/gcc6_sanitize_tests.sh --without-manaplusgame --without-dyecmd - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ${runenvx} ${runenvz} ./tools/ci/scripts/checkldd.sh src/manaplustests - ldd ./src/manaplustests | grep "libasan" - <<: *job-shared + <<: *job-push variables: LIBNAME: SDL LIBVERSION: SDL-1.2 @@ -515,7 +529,7 @@ gcc-6_SDL_default_sanitize_test: - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ${runenvx} ${runenvz} ./tools/ci/jobs/gcc6_sanitize_tests.sh --with-sdl2 --without-manaplusgame --without-dyecmd - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ${runenvx} ${runenvz} ./tools/ci/scripts/checkldd.sh src/manaplustests - ldd ./src/manaplustests | grep "libasan" - <<: *job-shared + <<: *job-push variables: LIBNAME: SDL LIBVERSION: default @@ -539,7 +553,7 @@ gcc-6_SDL_SDL-1.2_old_sanitize_test: - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ${runenvx} ${runenvz} ./tools/ci/jobs/gcc6_sanitize_tests.sh --without-manaplusgame --without-dyecmd - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ${runenvx} ${runenvz} ./tools/ci/scripts/checkldd.sh src/manaplustests - ldd ./src/manaplustests | grep "libasan" - <<: *job-shared + <<: *job-push variables: LIBNAME: SDL LIBVERSION: SDL-1.2_old @@ -562,7 +576,7 @@ gcc-6_SDL_default_old_sanitize_test: - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ${runenvx} ${runenvz} ./tools/ci/jobs/gcc6_sanitize_tests.sh --with-sdl2 --without-manaplusgame --without-dyecmd - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ${runenvx} ${runenvz} ./tools/ci/scripts/checkldd.sh src/manaplustests - ldd ./src/manaplustests | grep "libasan" - <<: *job-shared + <<: *job-push variables: LIBNAME: SDL LIBVERSION: default_old @@ -582,7 +596,7 @@ gcc-6_tests_simd: stage: build script: - ./tools/ci/jobs/gcc6_tests_simd.sh --without-dyecmd --without-manaplusgame - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-6 g++-6 make autoconf automake autopoint gettext @@ -596,7 +610,7 @@ gcc-5_tests: stage: build script: - ./tools/ci/jobs/gcc5_tests.sh --without-dyecmd - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-5 g++-5 make autoconf automake autopoint gettext @@ -611,7 +625,7 @@ gcc-5_tests_i386: script: - ./tools/ci/jobs/gcc5_tests.sh --without-dyecmd --without-manaplusgame image: vicamo/debian:sid-i386 - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-5 g++-5 make autoconf automake autopoint gettext @@ -625,7 +639,7 @@ gcc-6_tests_gcov: stage: build script: - ./tools/ci/jobs/gcc6_tests_gcov.sh --without-dyecmd --without-manaplusgame - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-6 g++-6 make autoconf automake autopoint gettext @@ -641,7 +655,7 @@ gcc-6_tests_i386: script: - ./tools/ci/jobs/gcc6_tests.sh --without-dyecmd --without-manaplusgame image: vicamo/debian:sid-i386 - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-6 g++-6 make autoconf automake autopoint gettext @@ -655,7 +669,7 @@ gcc-6_tests_glibcdebug: stage: build script: - ./tools/ci/jobs/gcc6_tests.sh --without-dyecmd --without-manaplusgame --enable-glibcdebug - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-6 g++-6 make autoconf automake autopoint gettext @@ -669,7 +683,7 @@ gcc-6_pugixml_tests: stage: build script: - ./tools/ci/jobs/gcc6_tests.sh --without-dyecmd --without-manaplusgame --enable-libxml=pugixml - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-6 g++-6 make autoconf automake autopoint gettext @@ -684,7 +698,7 @@ gcc-6_pugixml_tests_i386: script: - ./tools/ci/jobs/gcc6_tests.sh --without-dyecmd --without-manaplusgame --enable-libxml=pugixml image: vicamo/debian:sid-i386 - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-6 g++-6 make autoconf automake autopoint gettext @@ -699,7 +713,7 @@ gcc-6_tests_glibcdebug_i386: script: - ./tools/ci/jobs/gcc6_tests.sh --without-dyecmd --without-manaplusgame --enable-glibcdebug image: vicamo/debian:sid-i386 - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-6 g++-6 make autoconf automake autopoint gettext @@ -713,7 +727,7 @@ gcc-6_sdl2_tests_gcov: stage: build script: - ./tools/ci/jobs/gcc6_sdl2_tests_gcov.sh --without-dyecmd --without-manaplusgame - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-6 g++-6 make autoconf automake autopoint gettext @@ -729,7 +743,7 @@ gcc-6_sdl2_tests_i386: script: - ./tools/ci/jobs/gcc6_sdl2_tests.sh --without-dyecmd --without-manaplusgame image: vicamo/debian:sid-i386 - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-6 g++-6 make autoconf automake autopoint gettext @@ -743,7 +757,7 @@ gcc-5_sdl2_tests_glibcdebug: stage: build script: - ./tools/ci/jobs/gcc5_sdl2_tests.sh --without-manaplusgame --enable-glibcdebug - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-5 g++-5 make autoconf automake autopoint gettext @@ -758,7 +772,7 @@ gcc-5_sdl2_tests_i386: script: - ./tools/ci/jobs/gcc5_sdl2_tests.sh --without-dyecmd --without-manaplusgame image: vicamo/debian:sid-i386 - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-5 g++-5 make autoconf automake autopoint gettext @@ -772,7 +786,7 @@ gcc-5_sdl2_no_opengl_tests: stage: build script: - ./tools/ci/jobs/gcc5_sdl2_tests.sh --without-opengl --without-dyecmd --without-manaplusgame - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-5 g++-5 make autoconf automake autopoint gettext @@ -787,7 +801,7 @@ gcc-5_sdl2_no_opengl_tests_i386: script: - ./tools/ci/jobs/gcc5_sdl2_tests.sh --without-opengl --without-dyecmd --without-manaplusgame image: vicamo/debian:sid-i386 - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-5 g++-5 make autoconf automake autopoint gettext @@ -803,7 +817,7 @@ gcc-6_zlib_v1.2.3.9_tests: - ./tools/ci/scripts/downloadlib.sh ${LIBNAME} ${LIBVERSION} - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ./tools/ci/jobs/gcc6_tests.sh --without-dyecmd --without-manaplusgame - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ./tools/ci/scripts/checkldd.sh src/manaplustests - <<: *job-shared + <<: *job-push variables: LIBNAME: zlib LIBVERSION: v1.2.3.9 @@ -822,7 +836,7 @@ gcc-6_zlib_master_tests: - ./tools/ci/scripts/downloadlib.sh ${LIBNAME} ${LIBVERSION} - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ./tools/ci/jobs/gcc6_tests.sh --without-dyecmd --without-manaplusgame - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ./tools/ci/scripts/checkldd.sh src/manaplustests - <<: *job-shared + <<: *job-push variables: LIBNAME: zlib LIBVERSION: master @@ -841,7 +855,7 @@ gcc-6_tests_valgrind: - echo test valgrind - valgrind -q --read-var-info=yes --track-origins=yes --malloc-fill=11 --free-fill=55 --show-reachable=yes --leak-check=full --leak-resolution=high --partial-loads-ok=yes --error-limit=no ./src/manaplustests 2>logs/valg.log - grep "invalid" logs/valg.log && exit 1 || true - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-6 g++-6 make autoconf automake autopoint gettext @@ -859,7 +873,7 @@ gcc-6_tests_valgrind_i386: - valgrind -q --read-var-info=yes --track-origins=yes --malloc-fill=11 --free-fill=55 --show-reachable=yes --leak-check=full --leak-resolution=high --partial-loads-ok=yes --error-limit=no ./src/manaplustests 2>logs/valg.log - grep "invalid" logs/valg.log && exit 1 || true image: vicamo/debian:sid-i386 - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-6 g++-6 make autoconf automake autopoint gettext @@ -873,7 +887,7 @@ gcc-6_lto: stage: build script: - ./tools/ci/jobs/gcc6_lto.sh - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-6 g++-6 make autoconf automake autopoint gettext @@ -885,7 +899,7 @@ gcc-6_lto_i386: script: - ./tools/ci/jobs/gcc6_lto.sh image: vicamo/debian:sid-i386 - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-6 g++-6 make autoconf automake autopoint gettext @@ -898,7 +912,7 @@ gcc-5_tarball_tests: stage: build script: - ./tools/ci/jobs/gcc6_tarball_tests.sh --without-dyecmd --without-manaplusgame - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-6 g++-6 make autoconf automake autopoint gettext @@ -911,7 +925,7 @@ gentoo_gcc-4.9_tests: script: - ./tools/ci/jobs/gcc49_tests.sh --without-dyecmd --without-manaplusgame image: registry.gitlab.com/manaplus/images:gentoo_gcc49_sdl1 - <<: *job-shared + <<: *job-push variables: PMUPDATE: "echo" PMINSTALL: "echo" @@ -925,7 +939,7 @@ gentoo_gcc-4.9_tests_sdl2: script: - ./tools/ci/jobs/gcc49_tests.sh --without-dyecmd --without-manaplusgame --with-sdl2 image: registry.gitlab.com/manaplus/images:gentoo_gcc49_sdl2 - <<: *job-shared + <<: *job-push variables: PMUPDATE: "echo" PMINSTALL: "echo" @@ -941,7 +955,7 @@ gcc-3_sdl1: script: - ./tools/ci/jobs/gcc3.sh image: registry.gitlab.com/manaplus/images:gentoo_gcc3_sdl1 - <<: *job-shared + <<: *job-push variables: PMUPDATE: "echo" PMINSTALL: "echo" @@ -953,7 +967,7 @@ gcc-3_sdl2: script: - ./tools/ci/jobs/gcc3.sh --with-sdl2 image: registry.gitlab.com/manaplus/images:gentoo_gcc3_sdl2 - <<: *job-shared + <<: *job-push variables: PMUPDATE: "echo" PMINSTALL: "echo" @@ -965,7 +979,7 @@ gcc-4.1_sdl1: script: - ./tools/ci/jobs/gcc41.sh image: registry.gitlab.com/manaplus/images:gentoo_gcc41_sdl1 - <<: *job-shared + <<: *job-push variables: PMUPDATE: "echo" PMINSTALL: "echo" @@ -979,7 +993,7 @@ gcc-4.1_sdl2: script: - ./tools/ci/jobs/gcc41.sh --with-sdl2 image: registry.gitlab.com/manaplus/images:gentoo_gcc41_sdl2 - <<: *job-shared + <<: *job-push variables: PMUPDATE: "echo" PMINSTALL: "echo" @@ -993,7 +1007,7 @@ gcc-4.3_sdl1: script: - ./tools/ci/jobs/gcc43.sh image: registry.gitlab.com/manaplus/images:gentoo_gcc43_sdl1 - <<: *job-shared + <<: *job-push variables: PMUPDATE: "echo" PMINSTALL: "echo" @@ -1007,7 +1021,7 @@ gcc-4.3_sdl2: script: - ./tools/ci/jobs/gcc43.sh --with-sdl2 image: registry.gitlab.com/manaplus/images:gentoo_gcc43_sdl2 - <<: *job-shared + <<: *job-push variables: PMUPDATE: "echo" PMINSTALL: "echo" @@ -1021,7 +1035,7 @@ gcc-4.4_i386: script: - ./tools/ci/jobs/gcc44.sh image: vicamo/debian:oldstable-i386 - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-4.4 g++-4.4 make autoconf automake autopoint gettext @@ -1035,7 +1049,7 @@ gcc-4.5: script: - ./tools/ci/jobs/gcc45.sh image: ubuntu:12.04 - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-4.5 g++-4.5 make autoconf automake autopoint gettext @@ -1049,7 +1063,7 @@ gcc-4.6: script: - ./tools/ci/jobs/gcc46.sh image: debian:oldstable - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-4.6 g++-4.6 make autoconf automake autopoint gettext @@ -1063,7 +1077,7 @@ gcc-4.6_i386: script: - ./tools/ci/jobs/gcc46.sh image: vicamo/debian:oldstable-i386 - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-4.6 g++-4.6 make autoconf automake autopoint gettext @@ -1077,7 +1091,7 @@ gcc-4.7: script: - ./tools/ci/jobs/gcc47.sh image: debian:oldstable - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-4.7 g++-4.7 make autoconf automake autopoint gettext @@ -1091,7 +1105,7 @@ gcc-4.7_i386: script: - ./tools/ci/jobs/gcc47.sh image: vicamo/debian:oldstable-i386 - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-4.7 g++-4.7 make autoconf automake autopoint gettext @@ -1105,7 +1119,7 @@ gcc-4.7_c++11: script: - ./tools/ci/jobs/gcc47_c++11.sh image: debian:oldstable - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-4.7 g++-4.7 make autoconf automake autopoint gettext @@ -1119,7 +1133,7 @@ gcc-4.8: script: - ./tools/ci/jobs/gcc48.sh image: debian:stable - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-4.8 g++-4.8 make autoconf automake autopoint gettext @@ -1131,7 +1145,7 @@ gcc-4.8_i386: script: - ./tools/ci/jobs/gcc48.sh image: vicamo/debian:stable-i386 - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-4.8 g++-4.8 make autoconf automake autopoint gettext @@ -1145,7 +1159,7 @@ clang-3.0: script: - ./tools/ci/jobs/clang.sh clang image: debian:oldstable - <<: *job-shared + <<: *job-push variables: PACKAGES: clang libc++-dev make autoconf automake autopoint gettext @@ -1159,7 +1173,7 @@ clang-3.0_i386: script: - ./tools/ci/jobs/clang.sh clang image: vicamo/debian:oldstable-i386 - <<: *job-shared + <<: *job-push variables: PACKAGES: clang libc++-dev make autoconf automake autopoint gettext @@ -1173,7 +1187,7 @@ clang-3.3: script: - ./tools/ci/jobs/clang.sh clang-3.3 image: ubuntu:12.04 - <<: *job-shared + <<: *job-push variables: PACKAGES: clang-3.3 libc++-dev make autoconf automake autopoint gettext @@ -1187,7 +1201,7 @@ clang-3.3_i386: script: - ./tools/ci/jobs/clang.sh clang-3.3 image: vicamo/ubuntu:precise-i386 - <<: *job-shared + <<: *job-push variables: PACKAGES: clang-3.3 libc++-dev make autoconf automake autopoint gettext @@ -1201,7 +1215,7 @@ clang-3.4: script: - ./tools/ci/jobs/clang34.sh image: debian:stable - <<: *job-shared + <<: *job-push variables: PACKAGES: clang-3.4 libc++-dev make autoconf automake autopoint gettext @@ -1213,7 +1227,7 @@ clang-3.4_i386: script: - ./tools/ci/jobs/clang34.sh image: vicamo/debian:stable-i386 - <<: *job-shared + <<: *job-push variables: PACKAGES: clang-3.4 libc++-dev make autoconf automake autopoint gettext @@ -1227,7 +1241,7 @@ clang-3.5: script: - ./tools/ci/jobs/clang35.sh image: debian:stable - <<: *job-shared + <<: *job-push variables: PACKAGES: clang-3.5 libc++-dev make autoconf automake autopoint gettext @@ -1239,7 +1253,7 @@ clang-3.5_i386: script: - ./tools/ci/jobs/clang35.sh image: vicamo/debian:stable-i386 - <<: *job-shared + <<: *job-push variables: PACKAGES: clang-3.5 libc++-dev make autoconf automake autopoint gettext @@ -1253,7 +1267,7 @@ clang-3.6: script: - ./tools/ci/jobs/clang36.sh image: ubuntu:14.04 - <<: *job-shared + <<: *job-push variables: PACKAGES: clang-3.6 libc++-dev make autoconf automake autopoint gettext @@ -1267,7 +1281,7 @@ clang-3.6_i386: script: - ./tools/ci/jobs/clang36.sh image: vicamo/ubuntu:trusty-i386 - <<: *job-shared + <<: *job-push variables: PACKAGES: clang-3.6 libc++-dev make autoconf automake autopoint gettext @@ -1281,7 +1295,7 @@ clang-3.7: script: - ./tools/ci/jobs/clang37.sh image: ubuntu:16.04 - <<: *job-shared + <<: *job-push variables: PACKAGES: clang-3.7 libc++-dev make autoconf automake autopoint gettext @@ -1295,7 +1309,7 @@ clang-3.7_i386: script: - ./tools/ci/jobs/clang37.sh image: vicamo/ubuntu:xenial-i386 - <<: *job-shared + <<: *job-push variables: PACKAGES: clang-3.7 libc++-dev make autoconf automake autopoint gettext @@ -1309,7 +1323,7 @@ clang-3.8: script: - ./tools/ci/jobs/clang38.sh image: ubuntu:16.04 - <<: *job-shared + <<: *job-push variables: PACKAGES: clang-3.8 libc++-dev libc++abi-dev make autoconf automake autopoint gettext @@ -1323,7 +1337,7 @@ clang-3.8_i386: script: - ./tools/ci/jobs/clang38.sh image: vicamo/ubuntu:xenial-i386 - <<: *job-shared + <<: *job-push variables: PACKAGES: clang-3.8 libc++-dev libc++abi-dev make autoconf automake autopoint gettext @@ -1336,7 +1350,7 @@ clang-3.8_i386: stage: build script: - ./tools/ci/jobs/clang39.sh_c++11.sh - <<: *job-shared + <<: *job-push variables: PACKAGES: clang-3.9 libc++-dev libc++abi-dev make autoconf automake autopoint gettext @@ -1348,7 +1362,7 @@ clang-3.8_i386: script: - ./tools/ci/jobs/clang39.sh_c++11.sh image: vicamo/debian:sid-i386 - <<: *job-shared + <<: *job-push variables: PACKAGES: clang-3.9 libc++-dev libc++abi-dev make autoconf automake autopoint gettext @@ -1361,7 +1375,7 @@ gcc-6_all_and_unittestsbin: stage: build script: - ./tools/ci/jobs/gcc6_silent.sh --enable-unittestsbin - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-6 g++-6 make autoconf automake autopoint gettext @@ -1373,7 +1387,7 @@ gcc-4.8_c++11: script: - ./tools/ci/jobs/gcc48_c++11.sh image: debian:stable - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-4.8 g++-4.8 make autoconf automake autopoint gettext @@ -1385,7 +1399,7 @@ gcc-4.9: script: - ./tools/ci/jobs/gcc49.sh image: debian:stable - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-4.9 g++-4.9 make autoconf automake autopoint gettext @@ -1397,7 +1411,7 @@ gcc-4.9_i386: script: - ./tools/ci/jobs/gcc49.sh image: vicamo/debian:stable-i386 - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-4.9 g++-4.9 make autoconf automake autopoint gettext @@ -1411,7 +1425,7 @@ gcc-4.9_c++11: script: - ./tools/ci/jobs/gcc49_c++11.sh image: debian:stable - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-4.9 g++-4.9 make autoconf automake autopoint gettext @@ -1423,7 +1437,7 @@ cmake_gcc-4.9: script: - ./tools/ci/jobs/cmake_gcc49.sh image: debian:stable - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-4.9 g++-4.9 make cmake gettext @@ -1436,7 +1450,7 @@ clang-4.0: stage: build script: - ./tools/ci/jobs/clang40.sh - <<: *job-shared + <<: *job-push variables: PACKAGES: clang-4.0 libc++-dev libc++abi-dev make autoconf automake autopoint gettext @@ -1449,7 +1463,7 @@ gcc-5: stage: build script: - ./tools/ci/jobs/gcc5.sh --enable-werror - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-5 g++-5 make autoconf automake autopoint gettext @@ -1460,7 +1474,7 @@ gcc-5_c++11: stage: build script: - ./tools/ci/jobs/gcc5_c++11.sh - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-5 g++-5 make autoconf automake autopoint gettext @@ -1471,7 +1485,7 @@ gcc-5_sdl2_c++11: stage: build script: - ./tools/ci/jobs/gcc5_sdl2_c++11.sh - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-5 g++-5 make autoconf automake autopoint gettext @@ -1483,7 +1497,7 @@ gcc-5_sdl2_c++11_i386: script: - ./tools/ci/jobs/gcc5_sdl2_c++11.sh image: vicamo/debian:sid-i386 - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-5 g++-5 make autoconf automake autopoint gettext @@ -1496,7 +1510,7 @@ gcc-snapshot: stage: build script: - ./tools/ci/jobs/gccsnapshot.sh - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-snapshot make autoconf automake autopoint gettext @@ -1508,7 +1522,7 @@ gcc-snapshot_i386: script: - ./tools/ci/jobs/gccsnapshot.sh image: vicamo/debian:sid-i386 - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-snapshot make autoconf automake autopoint gettext @@ -1521,7 +1535,7 @@ gcc-snapshot_sdl2: stage: build script: - ./tools/ci/jobs/gccsnapshot_sdl2.sh - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-snapshot make autoconf automake autopoint gettext @@ -1533,7 +1547,7 @@ gcc-snapshot_sdl2_i386: script: - ./tools/ci/jobs/gccsnapshot_sdl2.sh image: vicamo/debian:sid-i386 - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-snapshot make autoconf automake autopoint gettext @@ -1546,7 +1560,7 @@ gcc_without_mumble: stage: build script: - ./tools/ci/jobs/gcc5.sh --without-mumble --enable-werror - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-5 g++-5 make autoconf automake autopoint gettext @@ -1557,7 +1571,7 @@ gcc_without_customnls: stage: build script: - ./tools/ci/jobs/gcc5.sh --enable-customnls --enable-werror - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-5 g++-5 make autoconf automake autopoint gettext @@ -1568,7 +1582,7 @@ gcc_without_customnls_nonls: stage: build script: - ./tools/ci/jobs/gcc5.sh --enable-customnls --disable-nls --enable-werror - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-5 g++-5 make autoconf automake autopoint gettext @@ -1580,7 +1594,7 @@ gcc49_cilkplus: script: - ./tools/ci/jobs/gcc49.sh --enable-cilkplus image: debian:stable - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-4.9 g++-4.9 make autoconf automake autopoint gettext @@ -1591,7 +1605,7 @@ gcc-5_cilkplus: stage: build script: - ./tools/ci/jobs/gcc5.sh --enable-cilkplus - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-5 g++-5 make autoconf automake autopoint gettext @@ -1602,7 +1616,7 @@ gcc-6_cilkplus: stage: build script: - ./tools/ci/jobs/gcc6.sh --enable-cilkplus - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-6 g++-6 make autoconf automake autopoint gettext @@ -1613,7 +1627,7 @@ gcc-6_pugixml: stage: build script: - ./tools/ci/jobs/gcc6.sh --enable-libxml=pugixml - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-6 g++-6 make autoconf automake autopoint gettext @@ -1625,7 +1639,7 @@ gcc-6_pugixml_i386: script: - ./tools/ci/jobs/gcc6.sh --enable-libxml=pugixml image: vicamo/debian:sid-i386 - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-6 g++-6 make autoconf automake autopoint gettext @@ -1636,7 +1650,7 @@ gcc-6_pugixml_sdl2: stage: build script: - ./tools/ci/jobs/gcc6.sh --with-sdl2 --enable-libxml=pugixml - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-6 g++-6 make autoconf automake autopoint gettext @@ -1647,7 +1661,7 @@ gcc-6_pugixml_sdl2_i386: stage: build script: - ./tools/ci/jobs/gcc6.sh --with-sdl2 --enable-libxml=pugixml - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-6 g++-6 make autoconf automake autopoint gettext @@ -1658,7 +1672,7 @@ gcc_portable: stage: build script: - ./tools/ci/jobs/gcc6.sh --with-opengl --enable-tmwa --enable-portable=yes - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-6 g++-6 make autoconf automake autopoint gettext @@ -1669,7 +1683,7 @@ clang-3.9_sdl2: stage: build script: - ./tools/ci/jobs/clang39_sdl2.sh - <<: *job-shared + <<: *job-push variables: PACKAGES: clang-3.9 libc++-dev libc++abi-dev make autoconf automake autopoint gettext @@ -1680,7 +1694,7 @@ gcc-6_no_asserts: stage: build script: - ./tools/ci/jobs/gcc6.sh --disable-asserts - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-6 g++-6 make autoconf automake autopoint gettext @@ -1692,7 +1706,7 @@ gcc-4.8_sdl2: script: - ./tools/ci/jobs/gcc48.sh --with-sdl2 image: debian:stable - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-4.8 g++-4.8 make autoconf automake autopoint gettext @@ -1704,7 +1718,7 @@ gcc-4.9_sdl2: script: - ./tools/ci/jobs/gcc49.sh --with-sdl2 image: debian:stable - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-4.9 g++-4.9 make autoconf automake autopoint gettext @@ -1715,7 +1729,7 @@ gcc-5_h_eathena_tmwa: stage: build script: - ./tools/ci/jobs/gcc5_h.sh -std=c++0x -DDEBUGBUILD -DTMWA_SUPPORT -DENABLE_LIBXML - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-5 g++-5 make autoconf automake autopoint gettext @@ -1726,7 +1740,7 @@ 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 - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-5 g++-5 make autoconf automake autopoint gettext @@ -1737,7 +1751,7 @@ gcc-5_h_tinyxml2_all: stage: build script: - ./tools/ci/jobs/gcc5_h_pugi.sh -std=c++0x -DDEBUGBUILD -DTMWA_SUPPORT -DENABLE_NLS -DUSE_OPENGL -DENABLE_TINYXML2 - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-5 g++-5 make autoconf automake autopoint gettext @@ -1748,7 +1762,7 @@ gcc-5_tarball: stage: build script: - ./tools/ci/jobs/gcc5_tarball.sh - <<: *job-shared + <<: *job-push variables: PACKAGES: gcc-5 g++-5 make autoconf automake autopoint gettext @@ -1758,7 +1772,7 @@ fedora_gcc-snapshot_tests: stage: build script: - ./tools/ci/jobs/gccsnapshot_tests.sh --without-dyecmd --without-manaplusgame - <<: *job-shared + <<: *job-push image: fedora:rawhide variables: PMUPDATE: "dnf install --refresh -y @development-tools" @@ -1770,7 +1784,7 @@ fedora_gcc-snapshot_sdl2_tests: stage: build script: - ./tools/ci/jobs/gccsnapshot_tests.sh --with-sdl2 --without-dyecmd --without-manaplusgame - <<: *job-shared + <<: *job-push image: fedora:rawhide variables: PMUPDATE: "dnf install --refresh -y @development-tools" @@ -1782,7 +1796,7 @@ fedora_gcc-snapshot: stage: build script: - ./tools/ci/jobs/gccsnapshot.sh - <<: *job-shared + <<: *job-push image: fedora:rawhide variables: PMUPDATE: "dnf install --refresh -y @development-tools" @@ -1794,7 +1808,7 @@ fedora_gcc-snapshot_sdl2: stage: build script: - ./tools/ci/jobs/gccsnapshot.sh --with-sdl2 - <<: *job-shared + <<: *job-push image: fedora:rawhide variables: PMUPDATE: "dnf install --refresh -y @development-tools" @@ -1810,7 +1824,7 @@ gcc-6_zlib_v1.2.3.9: - ./tools/ci/scripts/downloadlib.sh ${LIBNAME} ${LIBVERSION} - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ./tools/ci/jobs/gcc6.sh - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ./tools/ci/scripts/checkldd.sh src/manaplus - <<: *job-shared + <<: *job-push variables: LIBNAME: zlib LIBVERSION: v1.2.3.9 @@ -1829,7 +1843,7 @@ gcc-6_zlib_v1.2.6.1: - ./tools/ci/scripts/downloadlib.sh ${LIBNAME} ${LIBVERSION} - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ./tools/ci/jobs/gcc6.sh - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ./tools/ci/scripts/checkldd.sh src/manaplus - <<: *job-shared + <<: *job-push variables: LIBNAME: zlib LIBVERSION: v1.2.6.1 @@ -1848,7 +1862,7 @@ gcc-6_zlib_v1.2.9: - ./tools/ci/scripts/downloadlib.sh ${LIBNAME} ${LIBVERSION} - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ./tools/ci/jobs/gcc6.sh - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ./tools/ci/scripts/checkldd.sh src/manaplus - <<: *job-shared + <<: *job-push variables: LIBNAME: zlib LIBVERSION: v1.2.9 @@ -1866,7 +1880,7 @@ gcc-6_zlib_v1.2.10: - ./tools/ci/scripts/downloadlib.sh ${LIBNAME} ${LIBVERSION} - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ./tools/ci/jobs/gcc6.sh - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ./tools/ci/scripts/checkldd.sh src/manaplus - <<: *job-shared + <<: *job-push variables: LIBNAME: zlib LIBVERSION: v1.2.10 @@ -1884,7 +1898,7 @@ gcc-6_zlib_v1.2.11: - ./tools/ci/scripts/downloadlib.sh ${LIBNAME} ${LIBVERSION} - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ./tools/ci/jobs/gcc6.sh - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ./tools/ci/scripts/checkldd.sh src/manaplus - <<: *job-shared + <<: *job-push variables: LIBNAME: zlib LIBVERSION: v1.2.11 @@ -1902,7 +1916,7 @@ gcc-6_zlib_master: - ./tools/ci/scripts/downloadlib.sh ${LIBNAME} ${LIBVERSION} - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ./tools/ci/jobs/gcc6.sh - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ./tools/ci/scripts/checkldd.sh src/manaplus - <<: *job-shared + <<: *job-push variables: LIBNAME: zlib LIBVERSION: master @@ -1920,7 +1934,7 @@ gcc-6_zlib_develop: - ./tools/ci/scripts/downloadlib.sh ${LIBNAME} ${LIBVERSION} - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ./tools/ci/jobs/gcc6.sh - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ./tools/ci/scripts/checkldd.sh src/manaplus - <<: *job-shared + <<: *job-push variables: LIBNAME: zlib LIBVERSION: develop @@ -1939,7 +1953,7 @@ gcc-6_zlib_develop: - ./tools/ci/scripts/downloadlib.sh ${LIBNAME} ${LIBVERSION} - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ./tools/ci/jobs/gcc6.sh - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ./tools/ci/scripts/checkldd.sh src/manaplus - <<: *job-shared + <<: *job-push variables: LIBNAME: zlib_ng LIBVERSION: develop @@ -1957,7 +1971,7 @@ gcc-6_libpng_master: - ./tools/ci/scripts/downloadlib.sh ${LIBNAME} ${LIBVERSION} - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ./tools/ci/jobs/gcc6.sh - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ./tools/ci/scripts/checkldd.sh src/manaplus - <<: *job-shared + <<: *job-push variables: LIBNAME: libpng LIBVERSION: master @@ -1975,7 +1989,7 @@ gcc-6_libpng_libpng17: - ./tools/ci/scripts/downloadlib.sh ${LIBNAME} ${LIBVERSION} - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ./tools/ci/jobs/gcc6.sh - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ./tools/ci/scripts/checkldd.sh src/manaplus - <<: *job-shared + <<: *job-push variables: LIBNAME: libpng LIBVERSION: libpng17 @@ -1993,7 +2007,7 @@ gcc-6_libpng_libpng16: - ./tools/ci/scripts/downloadlib.sh ${LIBNAME} ${LIBVERSION} - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ./tools/ci/jobs/gcc6.sh - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ./tools/ci/scripts/checkldd.sh src/manaplus - <<: *job-shared + <<: *job-push variables: LIBNAME: libpng LIBVERSION: libpng16 @@ -2011,7 +2025,7 @@ gcc-6_libpng_libpng15: - ./tools/ci/scripts/downloadlib.sh ${LIBNAME} ${LIBVERSION} - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ./tools/ci/jobs/gcc6.sh - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ./tools/ci/scripts/checkldd.sh src/manaplus - <<: *job-shared + <<: *job-push variables: LIBNAME: libpng LIBVERSION: libpng15 @@ -2029,7 +2043,7 @@ gcc-6_libpng_libpng14: - ./tools/ci/scripts/downloadlib.sh ${LIBNAME} ${LIBVERSION} - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ./tools/ci/jobs/gcc6.sh - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ./tools/ci/scripts/checkldd.sh src/manaplus - <<: *job-shared + <<: *job-push variables: LIBNAME: libpng LIBVERSION: libpng14 @@ -2047,7 +2061,7 @@ gcc-6_libpng_libpng12: - ./tools/ci/scripts/downloadlib.sh ${LIBNAME} ${LIBVERSION} - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ./tools/ci/jobs/gcc6.sh - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ./tools/ci/scripts/checkldd.sh src/manaplus - <<: *job-shared + <<: *job-push variables: LIBNAME: libpng LIBVERSION: libpng12 @@ -2065,7 +2079,7 @@ gcc-6_libpng_libpng10: - ./tools/ci/scripts/downloadlib.sh ${LIBNAME} ${LIBVERSION} - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ./tools/ci/jobs/gcc6.sh - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ./tools/ci/scripts/checkldd.sh src/manaplus - <<: *job-shared + <<: *job-push variables: LIBNAME: libpng LIBVERSION: libpng10 @@ -2083,7 +2097,7 @@ gcc-6_curl_curl-7_9_8: - ./tools/ci/scripts/downloadlib.sh ${LIBNAME} ${LIBVERSION} - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ./tools/ci/jobs/gcc6.sh - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ./tools/ci/scripts/checkldd.sh src/manaplus - <<: *job-shared + <<: *job-push variables: LIBNAME: curl LIBVERSION: curl-7_9_8 @@ -2101,7 +2115,7 @@ gcc-6_curl_curl-7_40_0: - ./tools/ci/scripts/downloadlib.sh ${LIBNAME} ${LIBVERSION} - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ./tools/ci/jobs/gcc6.sh - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ./tools/ci/scripts/checkldd.sh src/manaplus - <<: *job-shared + <<: *job-push variables: LIBNAME: curl LIBVERSION: curl-7_40_0 @@ -2119,7 +2133,7 @@ gcc-6_curl_curl-7_52_1: - ./tools/ci/scripts/downloadlib.sh ${LIBNAME} ${LIBVERSION} - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ./tools/ci/jobs/gcc6.sh - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ./tools/ci/scripts/checkldd.sh src/manaplus - <<: *job-shared + <<: *job-push variables: LIBNAME: curl LIBVERSION: curl-7_52_1 @@ -2137,7 +2151,7 @@ gcc-6_curl_curl-7_53_1: - ./tools/ci/scripts/downloadlib.sh ${LIBNAME} ${LIBVERSION} - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ./tools/ci/jobs/gcc6.sh - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ./tools/ci/scripts/checkldd.sh src/manaplus - <<: *job-shared + <<: *job-push variables: LIBNAME: curl LIBVERSION: curl-7_53_1 @@ -2157,7 +2171,7 @@ gcc-6_SDL_SDL-1.2: - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ${runenvx} ${runenvz} env - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ${runenvx} ${runenvz} ./tools/ci/jobs/gcc6.sh - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ${runenvx} ${runenvz} ./tools/ci/scripts/checkldd.sh src/manaplus - <<: *job-shared + <<: *job-push variables: LIBNAME: SDL LIBVERSION: SDL-1.2 @@ -2176,7 +2190,7 @@ gcc-6_SDL_default: - ./tools/ci/scripts/downloadlib.sh ${LIBNAME} ${LIBVERSION} - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ${runenvx} ${runenvz} ./tools/ci/jobs/gcc6.sh --with-sdl2 - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ${runenvx} ${runenvz} ./tools/ci/scripts/checkldd.sh src/manaplus - <<: *job-shared + <<: *job-push variables: LIBNAME: SDL LIBVERSION: default @@ -2197,7 +2211,7 @@ gcc-6_SDL_SDL-1.2_test: - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ${runenvx} ${runenvz} env - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ${runenvx} ${runenvz} ./tools/ci/jobs/gcc6_tests.sh --without-manaplusgame --without-dyecmd - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ${runenvx} ${runenvz} ./tools/ci/scripts/checkldd.sh src/manaplustests - <<: *job-shared + <<: *job-push variables: LIBNAME: SDL LIBVERSION: SDL-1.2 @@ -2217,7 +2231,7 @@ gcc-6_SDL_default_test: - ./tools/ci/scripts/downloadlib.sh ${LIBNAME} ${LIBVERSION} - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ${runenvx} ${runenvz} ./tools/ci/jobs/gcc6_tests.sh --with-sdl2 --without-manaplusgame --without-dyecmd - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ${runenvx} ${runenvz} ./tools/ci/scripts/checkldd.sh src/manaplustests - <<: *job-shared + <<: *job-push variables: LIBNAME: SDL LIBVERSION: default @@ -2238,7 +2252,7 @@ gcc-6_SDL_SDL-1.2_old: - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ${runenvx} ${runenvz} env - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ${runenvx} ${runenvz} ./tools/ci/jobs/gcc6.sh - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ${runenvx} ${runenvz} ./tools/ci/scripts/checkldd.sh src/manaplus - <<: *job-shared + <<: *job-push variables: LIBNAME: SDL LIBVERSION: SDL-1.2_old @@ -2259,7 +2273,7 @@ gcc-6_SDL_default_old: - ./tools/ci/scripts/downloadlib.sh ${LIBNAME} ${LIBVERSION} - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ${runenvx} ${runenvz} ./tools/ci/jobs/gcc6.sh --with-sdl2 - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ${runenvx} ${runenvz} ./tools/ci/scripts/checkldd.sh src/manaplus - <<: *job-shared + <<: *job-push variables: LIBNAME: SDL LIBVERSION: default_old @@ -2282,7 +2296,7 @@ gcc-6_SDL_SDL-1.2_old_test: - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ${runenvx} ${runenvz} env - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ${runenvx} ${runenvz} ./tools/ci/jobs/gcc6_tests.sh --without-manaplusgame --without-dyecmd - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ${runenvx} ${runenvz} ./tools/ci/scripts/checkldd.sh src/manaplustests - <<: *job-shared + <<: *job-push variables: LIBNAME: SDL LIBVERSION: SDL-1.2_old @@ -2304,7 +2318,7 @@ gcc-6_SDL_default_old_test: - ./tools/ci/scripts/downloadlib.sh ${LIBNAME} ${LIBVERSION} - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ${runenvx} ${runenvz} ./tools/ci/jobs/gcc6_tests.sh --with-sdl2 --without-manaplusgame --without-dyecmd - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ${runenvx} ${runenvz} ./tools/ci/scripts/checkldd.sh src/manaplustests - <<: *job-shared + <<: *job-push variables: LIBNAME: SDL LIBVERSION: default_old @@ -2329,7 +2343,7 @@ deheader_gui_windows_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/gui/windows -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_sdl2_gui_windows_cpp: @@ -2339,7 +2353,7 @@ deheader_sdl2_gui_windows_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/gui/windows -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_gui_windows_withoutopengl_cpp: @@ -2349,7 +2363,7 @@ deheader_gui_windows_withoutopengl_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/gui/windows -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_sdl2_gui_windows_withoutopengl_cpp: @@ -2359,7 +2373,7 @@ deheader_sdl2_gui_windows_withoutopengl_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/gui/windows -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_gui_widgets_cpp: @@ -2369,7 +2383,7 @@ deheader_gui_widgets_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/gui/widgets -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_sdl2_gui_widgets_cpp: @@ -2379,7 +2393,7 @@ deheader_sdl2_gui_widgets_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/gui/widgets -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_gui_widgets_withoutopengl_cpp: @@ -2389,7 +2403,7 @@ deheader_gui_widgets_withoutopengl_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/gui/widgets -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_sdl2_gui_widgets_withoutopengl_cpp: @@ -2399,7 +2413,7 @@ deheader_sdl2_gui_widgets_withoutopengl_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/gui/widgets -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_gui_models_cpp: @@ -2409,7 +2423,7 @@ deheader_gui_models_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/gui/models -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_sdl2_gui_models_cpp: @@ -2419,7 +2433,7 @@ deheader_sdl2_gui_models_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/gui/models -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_gui_models_withoutopengl_cpp: @@ -2429,7 +2443,7 @@ deheader_gui_models_withoutopengl_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/gui/models -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_sdl2_gui_models_withoutopengl_cpp: @@ -2439,7 +2453,7 @@ deheader_sdl2_gui_models_withoutopengl_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/gui/models -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_actions_cpp: @@ -2449,7 +2463,7 @@ deheader_actions_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/actions -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_actions_h: @@ -2459,7 +2473,7 @@ deheader_actions_h: - ./tools/ci/jobs/deheader.sh - find ./src/actions -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_being_cpp: @@ -2469,7 +2483,7 @@ deheader_being_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/being -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_being_h: @@ -2479,7 +2493,7 @@ deheader_being_h: - ./tools/ci/jobs/deheader.sh - find ./src/being -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_const_h: @@ -2489,7 +2503,7 @@ deheader_const_h: - ./tools/ci/jobs/deheader.sh - find ./src/const -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_fs_cpp: @@ -2499,7 +2513,7 @@ deheader_fs_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/fs -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_fs_h: @@ -2509,7 +2523,7 @@ deheader_fs_h: - ./tools/ci/jobs/deheader.sh - find ./src/fs -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_dyecmd_cpp: @@ -2519,7 +2533,7 @@ deheader_dyecmd_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/dyetool -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_dyecmd_h: @@ -2529,7 +2543,7 @@ deheader_dyecmd_h: - ./tools/ci/jobs/deheader.sh - find ./src/dyetool -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_enums_h: @@ -2539,7 +2553,7 @@ deheader_enums_h: - ./tools/ci/jobs/deheader.sh - find ./src/enums -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_events_h: @@ -2549,7 +2563,7 @@ deheader_events_h: - ./tools/ci/jobs/deheader.sh - find ./src/events -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_gui_fonts_cpp: @@ -2559,7 +2573,7 @@ deheader_gui_fonts_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/gui/fonts -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_gui_fonts_h: @@ -2569,7 +2583,7 @@ deheader_gui_fonts_h: - ./tools/ci/jobs/deheader.sh - find ./src/gui/fonts -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_gui_models_h: @@ -2579,7 +2593,7 @@ deheader_gui_models_h: - ./tools/ci/jobs/deheader.sh - find ./src/gui/models -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_gui_popups_cpp: @@ -2589,7 +2603,7 @@ deheader_gui_popups_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/gui/popups -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_gui_popups_h: @@ -2599,7 +2613,7 @@ deheader_gui_popups_h: - ./tools/ci/jobs/deheader.sh - find ./src/gui/popups -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_gui_shortcut_cpp: @@ -2609,7 +2623,7 @@ deheader_gui_shortcut_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/gui/shortcut -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_gui_shortcut_h: @@ -2619,7 +2633,7 @@ deheader_gui_shortcut_h: - ./tools/ci/jobs/deheader.sh - find ./src/gui/shortcut -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_gui_widgets_h: @@ -2629,7 +2643,7 @@ deheader_gui_widgets_h: - ./tools/ci/jobs/deheader.sh - find ./src/gui/widgets -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_gui_windows_h: @@ -2639,7 +2653,7 @@ deheader_gui_windows_h: - ./tools/ci/jobs/deheader.sh - find ./src/gui/windows -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_gui_cpp: @@ -2649,7 +2663,7 @@ deheader_gui_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/gui -type f -name "*.cpp" ! -path "./src/gui/*/*" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_gui_h: @@ -2659,7 +2673,7 @@ deheader_gui_h: - ./tools/ci/jobs/deheader.sh - find ./src/gui -type f -name "*.h" ! -path "./src/gui/*/*" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_input_cpp: @@ -2669,7 +2683,7 @@ deheader_input_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/input -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_input_h: @@ -2679,7 +2693,7 @@ deheader_input_h: - ./tools/ci/jobs/deheader.sh - find ./src/input -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_listeners_cpp: @@ -2689,7 +2703,7 @@ deheader_listeners_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/listeners -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_listeners_h: @@ -2699,7 +2713,7 @@ deheader_listeners_h: - ./tools/ci/jobs/deheader.sh - find ./src/listeners -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_net_ea_cpp: @@ -2709,7 +2723,7 @@ deheader_net_ea_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/net/ea -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_net_ea_h: @@ -2719,7 +2733,7 @@ deheader_net_ea_h: - ./tools/ci/jobs/deheader.sh - find ./src/net/ea -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_net_eathena_cpp: @@ -2729,7 +2743,7 @@ deheader_net_eathena_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/net/eathena -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_net_eathena_h: @@ -2739,7 +2753,7 @@ deheader_net_eathena_h: - ./tools/ci/jobs/deheader.sh - find ./src/net/eathena -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_net_tmwa_cpp: @@ -2749,7 +2763,7 @@ deheader_net_tmwa_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/net/tmwa -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_net_tmwa_h: @@ -2759,7 +2773,7 @@ deheader_net_tmwa_h: - ./tools/ci/jobs/deheader.sh - find ./src/net/tmwa -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_net_cpp: @@ -2769,7 +2783,7 @@ deheader_net_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/net -type f -name "*.cpp" ! -path "./src/net/*/*" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_net_h: @@ -2779,7 +2793,7 @@ deheader_net_h: - ./tools/ci/jobs/deheader.sh - find ./src/net -type f -name "*.h" ! -path "./src/net/*/*" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_particle_cpp: @@ -2789,7 +2803,7 @@ deheader_particle_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/particle -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_particle_h: @@ -2799,7 +2813,7 @@ deheader_particle_h: - ./tools/ci/jobs/deheader.sh - find ./src/particle -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_render_cpp: @@ -2809,7 +2823,7 @@ deheader_render_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/render -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_render_h: @@ -2819,7 +2833,7 @@ deheader_render_h: - ./tools/ci/jobs/deheader.sh - find ./src/render -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_resources_db_cpp: @@ -2829,7 +2843,7 @@ deheader_resources_db_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/resources/db -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_resources_db_h: @@ -2839,7 +2853,7 @@ deheader_resources_db_h: - ./tools/ci/jobs/deheader.sh - find ./src/resources/db -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_resources_map_cpp: @@ -2849,7 +2863,7 @@ deheader_resources_map_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/resources/map -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_resources_map_h: @@ -2859,7 +2873,7 @@ deheader_resources_map_h: - ./tools/ci/jobs/deheader.sh - find ./src/resources/map -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_resources_cpp: @@ -2869,7 +2883,7 @@ deheader_resources_cpp: - ./tools/ci/jobs/deheader.sh - 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 - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_resources_h: @@ -2879,7 +2893,7 @@ deheader_resources_h: - ./tools/ci/jobs/deheader.sh - 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 - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_test_cpp: @@ -2889,7 +2903,7 @@ deheader_test_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/test -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_test_h: @@ -2899,7 +2913,7 @@ deheader_test_h: - ./tools/ci/jobs/deheader.sh - find ./src/test -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_utils_cpp: @@ -2909,7 +2923,7 @@ deheader_utils_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/utils -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_utils_h: @@ -2919,7 +2933,7 @@ deheader_utils_h: - ./tools/ci/jobs/deheader.sh - find ./src/utils -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_cpp: @@ -2929,7 +2943,7 @@ deheader_cpp: - ./tools/ci/jobs/deheader.sh - find ./src -type f -name "*.cpp" ! -path "./src/*/*" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_h: @@ -2939,7 +2953,7 @@ deheader_h: - ./tools/ci/jobs/deheader.sh - find ./src -type f -name "*.h" ! -path "./src/*/*" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_cc: @@ -2949,7 +2963,7 @@ deheader_cc: - ./tools/ci/jobs/deheader.sh - find ./src -type f -name "*.cc" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared # deheader sdl2 @@ -2961,7 +2975,7 @@ deheader_sdl2_actions_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/actions -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_actions_h: @@ -2971,7 +2985,7 @@ deheader_sdl2_actions_h: - ./tools/ci/jobs/deheader.sh - find ./src/actions -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_being_cpp: @@ -2981,7 +2995,7 @@ deheader_sdl2_being_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/being -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_being_h: @@ -2991,7 +3005,7 @@ deheader_sdl2_being_h: - ./tools/ci/jobs/deheader.sh - find ./src/being -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_const_h: @@ -3001,7 +3015,7 @@ deheader_sdl2_const_h: - ./tools/ci/jobs/deheader.sh - find ./src/const -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_dyecmd_cpp: @@ -3011,7 +3025,7 @@ deheader_sdl2_dyecmd_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/dyetool -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_dyecmd_h: @@ -3021,7 +3035,7 @@ deheader_sdl2_dyecmd_h: - ./tools/ci/jobs/deheader.sh - find ./src/dyetool -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_enums_h: @@ -3031,7 +3045,7 @@ deheader_sdl2_enums_h: - ./tools/ci/jobs/deheader.sh - find ./src/enums -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_events_h: @@ -3041,7 +3055,7 @@ deheader_sdl2_events_h: - ./tools/ci/jobs/deheader.sh - find ./src/events -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_gui_fonts_cpp: @@ -3051,7 +3065,7 @@ deheader_sdl2_gui_fonts_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/gui/fonts -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_gui_fonts_h: @@ -3061,7 +3075,7 @@ deheader_sdl2_gui_fonts_h: - ./tools/ci/jobs/deheader.sh - find ./src/gui/fonts -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_gui_models_h: @@ -3071,7 +3085,7 @@ deheader_sdl2_gui_models_h: - ./tools/ci/jobs/deheader.sh - find ./src/gui/models -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_gui_popups_cpp: @@ -3081,7 +3095,7 @@ deheader_sdl2_gui_popups_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/gui/popups -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_gui_popups_h: @@ -3091,7 +3105,7 @@ deheader_sdl2_gui_popups_h: - ./tools/ci/jobs/deheader.sh - find ./src/gui/popups -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_gui_shortcut_cpp: @@ -3101,7 +3115,7 @@ deheader_sdl2_gui_shortcut_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/gui/shortcut -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_gui_shortcut_h: @@ -3111,7 +3125,7 @@ deheader_sdl2_gui_shortcut_h: - ./tools/ci/jobs/deheader.sh - find ./src/gui/shortcut -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_gui_widgets_h: @@ -3121,7 +3135,7 @@ deheader_sdl2_gui_widgets_h: - ./tools/ci/jobs/deheader.sh - find ./src/gui/widgets -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_gui_windows_h: @@ -3131,7 +3145,7 @@ deheader_sdl2_gui_windows_h: - ./tools/ci/jobs/deheader.sh - find ./src/gui/windows -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_gui_cpp: @@ -3141,7 +3155,7 @@ deheader_sdl2_gui_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/gui -type f -name "*.cpp" ! -path "./src/gui/*/*" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_gui_h: @@ -3151,7 +3165,7 @@ deheader_sdl2_gui_h: - ./tools/ci/jobs/deheader.sh - find ./src/gui -type f -name "*.h" ! -path "./src/gui/*/*" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_input_cpp: @@ -3161,7 +3175,7 @@ deheader_sdl2_input_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/input -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_input_h: @@ -3171,7 +3185,7 @@ deheader_sdl2_input_h: - ./tools/ci/jobs/deheader.sh - find ./src/input -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_listeners_cpp: @@ -3181,7 +3195,7 @@ deheader_sdl2_listeners_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/listeners -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_listeners_h: @@ -3191,7 +3205,7 @@ deheader_sdl2_listeners_h: - ./tools/ci/jobs/deheader.sh - find ./src/listeners -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_net_ea_cpp: @@ -3201,7 +3215,7 @@ deheader_sdl2_net_ea_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/net/ea -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_net_ea_h: @@ -3211,7 +3225,7 @@ deheader_sdl2_net_ea_h: - ./tools/ci/jobs/deheader.sh - find ./src/net/ea -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_net_eathena_cpp: @@ -3221,7 +3235,7 @@ deheader_sdl2_net_eathena_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/net/eathena -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_net_eathena_h: @@ -3231,7 +3245,7 @@ deheader_sdl2_net_eathena_h: - ./tools/ci/jobs/deheader.sh - find ./src/net/eathena -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_net_tmwa_cpp: @@ -3241,7 +3255,7 @@ deheader_sdl2_net_tmwa_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/net/tmwa -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_net_tmwa_h: @@ -3251,7 +3265,7 @@ deheader_sdl2_net_tmwa_h: - ./tools/ci/jobs/deheader.sh - find ./src/net/tmwa -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_net_cpp: @@ -3261,7 +3275,7 @@ deheader_sdl2_net_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/net -type f -name "*.cpp" ! -path "./src/net/*/*" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_net_h: @@ -3271,7 +3285,7 @@ deheader_sdl2_net_h: - ./tools/ci/jobs/deheader.sh - find ./src/net -type f -name "*.h" ! -path "./src/net/*/*" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_particle_cpp: @@ -3281,7 +3295,7 @@ deheader_sdl2_particle_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/particle -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_particle_h: @@ -3291,7 +3305,7 @@ deheader_sdl2_particle_h: - ./tools/ci/jobs/deheader.sh - find ./src/particle -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_render_cpp: @@ -3301,7 +3315,7 @@ deheader_sdl2_render_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/render -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_render_h: @@ -3311,7 +3325,7 @@ deheader_sdl2_render_h: - ./tools/ci/jobs/deheader.sh - find ./src/render -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_resources_db_cpp: @@ -3321,7 +3335,7 @@ deheader_sdl2_resources_db_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/resources/db -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_resources_db_h: @@ -3331,7 +3345,7 @@ deheader_sdl2_resources_db_h: - ./tools/ci/jobs/deheader.sh - find ./src/resources/db -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_resources_map_cpp: @@ -3341,7 +3355,7 @@ deheader_sdl2_resources_map_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/resources/map -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_resources_map_h: @@ -3351,7 +3365,7 @@ deheader_sdl2_resources_map_h: - ./tools/ci/jobs/deheader.sh - find ./src/resources/map -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_resources_cpp: @@ -3361,7 +3375,7 @@ deheader_sdl2_resources_cpp: - ./tools/ci/jobs/deheader.sh - 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 - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_resources_h: @@ -3371,7 +3385,7 @@ deheader_sdl2_resources_h: - ./tools/ci/jobs/deheader.sh - 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 - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_test_cpp: @@ -3381,7 +3395,7 @@ deheader_sdl2_test_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/test -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_test_h: @@ -3391,7 +3405,7 @@ deheader_sdl2_test_h: - ./tools/ci/jobs/deheader.sh - find ./src/test -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_utils_cpp: @@ -3401,7 +3415,7 @@ deheader_sdl2_utils_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/utils -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_utils_h: @@ -3411,7 +3425,7 @@ deheader_sdl2_utils_h: - ./tools/ci/jobs/deheader.sh - find ./src/utils -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_cpp: @@ -3421,7 +3435,7 @@ deheader_sdl2_cpp: - ./tools/ci/jobs/deheader.sh - find ./src -type f -name "*.cpp" ! -path "./src/*/*" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_h: @@ -3431,7 +3445,7 @@ deheader_sdl2_h: - ./tools/ci/jobs/deheader.sh - find ./src -type f -name "*.h" ! -path "./src/*/*" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_cc: @@ -3441,7 +3455,7 @@ deheader_sdl2_cc: - ./tools/ci/jobs/deheader.sh - find ./src -type f -name "*.cc" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared # dehedeart without opengl @@ -3453,7 +3467,7 @@ deheader_actions_withoutopengl_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/actions -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_actions_withoutopengl_h: @@ -3463,7 +3477,7 @@ deheader_actions_withoutopengl_h: - ./tools/ci/jobs/deheader.sh - find ./src/actions -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_being_withoutopengl_cpp: @@ -3473,7 +3487,7 @@ deheader_being_withoutopengl_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/being -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_being_withoutopengl_h: @@ -3483,7 +3497,7 @@ deheader_being_withoutopengl_h: - ./tools/ci/jobs/deheader.sh - find ./src/being -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_const_withoutopengl_h: @@ -3493,7 +3507,7 @@ deheader_const_withoutopengl_h: - ./tools/ci/jobs/deheader.sh - find ./src/const -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_dyecmd_withoutopengl_cpp: @@ -3503,7 +3517,7 @@ deheader_dyecmd_withoutopengl_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/dyetool -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_dyecmd_withoutopengl_h: @@ -3513,7 +3527,7 @@ deheader_dyecmd_withoutopengl_h: - ./tools/ci/jobs/deheader.sh - find ./src/dyetool -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_enums_withoutopengl_h: @@ -3523,7 +3537,7 @@ deheader_enums_withoutopengl_h: - ./tools/ci/jobs/deheader.sh - find ./src/enums -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_events_withoutopengl_h: @@ -3533,7 +3547,7 @@ deheader_events_withoutopengl_h: - ./tools/ci/jobs/deheader.sh - find ./src/events -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_gui_fonts_withoutopengl_cpp: @@ -3543,7 +3557,7 @@ deheader_gui_fonts_withoutopengl_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/gui/fonts -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_gui_fonts_withoutopengl_h: @@ -3553,7 +3567,7 @@ deheader_gui_fonts_withoutopengl_h: - ./tools/ci/jobs/deheader.sh - find ./src/gui/fonts -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_gui_models_withoutopengl_h: @@ -3563,7 +3577,7 @@ deheader_gui_models_withoutopengl_h: - ./tools/ci/jobs/deheader.sh - find ./src/gui/models -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_gui_popups_withoutopengl_cpp: @@ -3573,7 +3587,7 @@ deheader_gui_popups_withoutopengl_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/gui/popups -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_gui_popups_withoutopengl_h: @@ -3583,7 +3597,7 @@ deheader_gui_popups_withoutopengl_h: - ./tools/ci/jobs/deheader.sh - find ./src/gui/popups -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_gui_shortcut_withoutopengl_cpp: @@ -3593,7 +3607,7 @@ deheader_gui_shortcut_withoutopengl_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/gui/shortcut -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_gui_shortcut_withoutopengl_h: @@ -3603,7 +3617,7 @@ deheader_gui_shortcut_withoutopengl_h: - ./tools/ci/jobs/deheader.sh - find ./src/gui/shortcut -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_gui_widgets_withoutopengl_h: @@ -3613,7 +3627,7 @@ deheader_gui_widgets_withoutopengl_h: - ./tools/ci/jobs/deheader.sh - find ./src/gui/widgets -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_gui_windows_withoutopengl_h: @@ -3623,7 +3637,7 @@ deheader_gui_windows_withoutopengl_h: - ./tools/ci/jobs/deheader.sh - find ./src/gui/windows -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_gui_withoutopengl_cpp: @@ -3633,7 +3647,7 @@ deheader_gui_withoutopengl_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/gui -type f -name "*.cpp" ! -path "./src/gui/*/*" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_gui_withoutopengl_h: @@ -3643,7 +3657,7 @@ deheader_gui_withoutopengl_h: - ./tools/ci/jobs/deheader.sh - find ./src/gui -type f -name "*.h" ! -path "./src/gui/*/*" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_input_withoutopengl_cpp: @@ -3653,7 +3667,7 @@ deheader_input_withoutopengl_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/input -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_input_withoutopengl_h: @@ -3663,7 +3677,7 @@ deheader_input_withoutopengl_h: - ./tools/ci/jobs/deheader.sh - find ./src/input -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_listeners_withoutopengl_cpp: @@ -3673,7 +3687,7 @@ deheader_listeners_withoutopengl_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/listeners -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_listeners_withoutopengl_h: @@ -3683,7 +3697,7 @@ deheader_listeners_withoutopengl_h: - ./tools/ci/jobs/deheader.sh - find ./src/listeners -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_net_ea_withoutopengl_cpp: @@ -3693,7 +3707,7 @@ deheader_net_ea_withoutopengl_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/net/ea -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_net_ea_withoutopengl_h: @@ -3703,7 +3717,7 @@ deheader_net_ea_withoutopengl_h: - ./tools/ci/jobs/deheader.sh - find ./src/net/ea -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_net_eathena_withoutopengl_cpp: @@ -3713,7 +3727,7 @@ deheader_net_eathena_withoutopengl_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/net/eathena -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_net_eathena_withoutopengl_h: @@ -3723,7 +3737,7 @@ deheader_net_eathena_withoutopengl_h: - ./tools/ci/jobs/deheader.sh - find ./src/net/eathena -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_net_tmwa_withoutopengl_cpp: @@ -3733,7 +3747,7 @@ deheader_net_tmwa_withoutopengl_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/net/tmwa -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_net_tmwa_withoutopengl_h: @@ -3743,7 +3757,7 @@ deheader_net_tmwa_withoutopengl_h: - ./tools/ci/jobs/deheader.sh - find ./src/net/tmwa -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_net_withoutopengl_cpp: @@ -3753,7 +3767,7 @@ deheader_net_withoutopengl_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/net -type f -name "*.cpp" ! -path "./src/net/*/*" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_net_withoutopengl_h: @@ -3763,7 +3777,7 @@ deheader_net_withoutopengl_h: - ./tools/ci/jobs/deheader.sh - find ./src/net -type f -name "*.h" ! -path "./src/net/*/*" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_particle_withoutopengl_cpp: @@ -3773,7 +3787,7 @@ deheader_particle_withoutopengl_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/particle -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_particle_withoutopengl_h: @@ -3783,7 +3797,7 @@ deheader_particle_withoutopengl_h: - ./tools/ci/jobs/deheader.sh - find ./src/particle -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_render_withoutopengl_cpp: @@ -3793,7 +3807,7 @@ deheader_render_withoutopengl_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/render -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_render_withoutopengl_h: @@ -3803,7 +3817,7 @@ deheader_render_withoutopengl_h: - ./tools/ci/jobs/deheader.sh - find ./src/render -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_resources_db_withoutopengl_cpp: @@ -3813,7 +3827,7 @@ deheader_resources_db_withoutopengl_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/resources/db -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_resources_db_withoutopengl_h: @@ -3823,7 +3837,7 @@ deheader_resources_db_withoutopengl_h: - ./tools/ci/jobs/deheader.sh - find ./src/resources/db -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_resources_map_withoutopengl_cpp: @@ -3833,7 +3847,7 @@ deheader_resources_map_withoutopengl_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/resources/map -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_resources_map_withoutopengl_h: @@ -3843,7 +3857,7 @@ deheader_resources_map_withoutopengl_h: - ./tools/ci/jobs/deheader.sh - find ./src/resources/map -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_resources_withoutopengl_cpp: @@ -3853,7 +3867,7 @@ deheader_resources_withoutopengl_cpp: - ./tools/ci/jobs/deheader.sh - 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 - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_resources_withoutopengl_h: @@ -3863,7 +3877,7 @@ deheader_resources_withoutopengl_h: - ./tools/ci/jobs/deheader.sh - 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 - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_test_withoutopengl_cpp: @@ -3873,7 +3887,7 @@ deheader_test_withoutopengl_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/test -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_test_withoutopengl_h: @@ -3883,7 +3897,7 @@ deheader_test_withoutopengl_h: - ./tools/ci/jobs/deheader.sh - find ./src/test -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_utils_withoutopengl_cpp: @@ -3893,7 +3907,7 @@ deheader_utils_withoutopengl_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/utils -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_utils_withoutopengl_h: @@ -3903,7 +3917,7 @@ deheader_utils_withoutopengl_h: - ./tools/ci/jobs/deheader.sh - find ./src/utils -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_withoutopengl_cpp: @@ -3913,7 +3927,7 @@ deheader_withoutopengl_cpp: - ./tools/ci/jobs/deheader.sh - find ./src -type f -name "*.cpp" ! -path "./src/*/*" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_withoutopengl_h: @@ -3923,7 +3937,7 @@ deheader_withoutopengl_h: - ./tools/ci/jobs/deheader.sh - find ./src -type f -name "*.h" ! -path "./src/*/*" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared deheader_withoutopengl_cc: @@ -3933,7 +3947,7 @@ deheader_withoutopengl_cc: - ./tools/ci/jobs/deheader.sh - find ./src -type f -name "*.cc" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_shared # deheader sdl2 @@ -3945,7 +3959,7 @@ deheader_sdl2_actions_withoutopengl_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/actions -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_actions_withoutopengl_h: @@ -3955,7 +3969,7 @@ deheader_sdl2_actions_withoutopengl_h: - ./tools/ci/jobs/deheader.sh - find ./src/actions -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_being_withoutopengl_cpp: @@ -3965,7 +3979,7 @@ deheader_sdl2_being_withoutopengl_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/being -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_being_withoutopengl_h: @@ -3975,7 +3989,7 @@ deheader_sdl2_being_withoutopengl_h: - ./tools/ci/jobs/deheader.sh - find ./src/being -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_const_withoutopengl_h: @@ -3985,7 +3999,7 @@ deheader_sdl2_const_withoutopengl_h: - ./tools/ci/jobs/deheader.sh - find ./src/const -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_dyecmd_withoutopengl_cpp: @@ -3995,7 +4009,7 @@ deheader_sdl2_dyecmd_withoutopengl_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/dyetool -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_dyecmd_withoutopengl_h: @@ -4005,7 +4019,7 @@ deheader_sdl2_dyecmd_withoutopengl_h: - ./tools/ci/jobs/deheader.sh - find ./src/dyetool -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_enums_withoutopengl_h: @@ -4015,7 +4029,7 @@ deheader_sdl2_enums_withoutopengl_h: - ./tools/ci/jobs/deheader.sh - find ./src/enums -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_events_withoutopengl_h: @@ -4025,7 +4039,7 @@ deheader_sdl2_events_withoutopengl_h: - ./tools/ci/jobs/deheader.sh - find ./src/events -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_gui_fonts_withoutopengl_cpp: @@ -4035,7 +4049,7 @@ deheader_sdl2_gui_fonts_withoutopengl_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/gui/fonts -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_gui_fonts_withoutopengl_h: @@ -4045,7 +4059,7 @@ deheader_sdl2_gui_fonts_withoutopengl_h: - ./tools/ci/jobs/deheader.sh - find ./src/gui/fonts -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_gui_models_withoutopengl_h: @@ -4055,7 +4069,7 @@ deheader_sdl2_gui_models_withoutopengl_h: - ./tools/ci/jobs/deheader.sh - find ./src/gui/models -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_gui_popups_withoutopengl_cpp: @@ -4065,7 +4079,7 @@ deheader_sdl2_gui_popups_withoutopengl_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/gui/popups -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_gui_popups_withoutopengl_h: @@ -4075,7 +4089,7 @@ deheader_sdl2_gui_popups_withoutopengl_h: - ./tools/ci/jobs/deheader.sh - find ./src/gui/popups -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_gui_shortcut_withoutopengl_cpp: @@ -4085,7 +4099,7 @@ deheader_sdl2_gui_shortcut_withoutopengl_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/gui/shortcut -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_gui_shortcut_withoutopengl_h: @@ -4095,7 +4109,7 @@ deheader_sdl2_gui_shortcut_withoutopengl_h: - ./tools/ci/jobs/deheader.sh - find ./src/gui/shortcut -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_gui_widgets_withoutopengl_h: @@ -4105,7 +4119,7 @@ deheader_sdl2_gui_widgets_withoutopengl_h: - ./tools/ci/jobs/deheader.sh - find ./src/gui/widgets -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_gui_windows_withoutopengl_h: @@ -4115,7 +4129,7 @@ deheader_sdl2_gui_windows_withoutopengl_h: - ./tools/ci/jobs/deheader.sh - find ./src/gui/windows -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_gui_withoutopengl_cpp: @@ -4125,7 +4139,7 @@ deheader_sdl2_gui_withoutopengl_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/gui -type f -name "*.cpp" ! -path "./src/gui/*/*" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_gui_withoutopengl_h: @@ -4135,7 +4149,7 @@ deheader_sdl2_gui_withoutopengl_h: - ./tools/ci/jobs/deheader.sh - find ./src/gui -type f -name "*.h" ! -path "./src/gui/*/*" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_input_withoutopengl_cpp: @@ -4145,7 +4159,7 @@ deheader_sdl2_input_withoutopengl_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/input -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_input_withoutopengl_h: @@ -4155,7 +4169,7 @@ deheader_sdl2_input_withoutopengl_h: - ./tools/ci/jobs/deheader.sh - find ./src/input -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_listeners_withoutopengl_cpp: @@ -4165,7 +4179,7 @@ deheader_sdl2_listeners_withoutopengl_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/listeners -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_listeners_withoutopengl_h: @@ -4175,7 +4189,7 @@ deheader_sdl2_listeners_withoutopengl_h: - ./tools/ci/jobs/deheader.sh - find ./src/listeners -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_net_ea_withoutopengl_cpp: @@ -4185,7 +4199,7 @@ deheader_sdl2_net_ea_withoutopengl_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/net/ea -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_net_ea_withoutopengl_h: @@ -4195,7 +4209,7 @@ deheader_sdl2_net_ea_withoutopengl_h: - ./tools/ci/jobs/deheader.sh - find ./src/net/ea -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_net_eathena_withoutopengl_cpp: @@ -4205,7 +4219,7 @@ deheader_sdl2_net_eathena_withoutopengl_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/net/eathena -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_net_eathena_withoutopengl_h: @@ -4215,7 +4229,7 @@ deheader_sdl2_net_eathena_withoutopengl_h: - ./tools/ci/jobs/deheader.sh - find ./src/net/eathena -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_net_tmwa_withoutopengl_cpp: @@ -4225,7 +4239,7 @@ deheader_sdl2_net_tmwa_withoutopengl_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/net/tmwa -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_net_tmwa_withoutopengl_h: @@ -4235,7 +4249,7 @@ deheader_sdl2_net_tmwa_withoutopengl_h: - ./tools/ci/jobs/deheader.sh - find ./src/net/tmwa -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_net_withoutopengl_cpp: @@ -4245,7 +4259,7 @@ deheader_sdl2_net_withoutopengl_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/net -type f -name "*.cpp" ! -path "./src/net/*/*" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_net_withoutopengl_h: @@ -4255,7 +4269,7 @@ deheader_sdl2_net_withoutopengl_h: - ./tools/ci/jobs/deheader.sh - find ./src/net -type f -name "*.h" ! -path "./src/net/*/*" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_particle_withoutopengl_cpp: @@ -4265,7 +4279,7 @@ deheader_sdl2_particle_withoutopengl_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/particle -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_particle_withoutopengl_h: @@ -4275,7 +4289,7 @@ deheader_sdl2_particle_withoutopengl_h: - ./tools/ci/jobs/deheader.sh - find ./src/particle -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_render_withoutopengl_cpp: @@ -4285,7 +4299,7 @@ deheader_sdl2_render_withoutopengl_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/render -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_render_withoutopengl_h: @@ -4295,7 +4309,7 @@ deheader_sdl2_render_withoutopengl_h: - ./tools/ci/jobs/deheader.sh - find ./src/render -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_resources_db_withoutopengl_cpp: @@ -4305,7 +4319,7 @@ deheader_sdl2_resources_db_withoutopengl_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/resources/db -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_resources_db_withoutopengl_h: @@ -4315,7 +4329,7 @@ deheader_sdl2_resources_db_withoutopengl_h: - ./tools/ci/jobs/deheader.sh - find ./src/resources/db -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_resources_map_withoutopengl_cpp: @@ -4325,7 +4339,7 @@ deheader_sdl2_resources_map_withoutopengl_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/resources/map -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_resources_map_withoutopengl_h: @@ -4335,7 +4349,7 @@ deheader_sdl2_resources_map_withoutopengl_h: - ./tools/ci/jobs/deheader.sh - find ./src/resources/map -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_resources_withoutopengl_cpp: @@ -4345,7 +4359,7 @@ deheader_sdl2_resources_withoutopengl_cpp: - ./tools/ci/jobs/deheader.sh - 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 - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_resources_withoutopengl_h: @@ -4355,7 +4369,7 @@ deheader_sdl2_resources_withoutopengl_h: - ./tools/ci/jobs/deheader.sh - 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 - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_test_withoutopengl_cpp: @@ -4365,7 +4379,7 @@ deheader_sdl2_test_withoutopengl_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/test -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_test_withoutopengl_h: @@ -4375,7 +4389,7 @@ deheader_sdl2_test_withoutopengl_h: - ./tools/ci/jobs/deheader.sh - find ./src/test -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_utils_withoutopengl_cpp: @@ -4385,7 +4399,7 @@ deheader_sdl2_utils_withoutopengl_cpp: - ./tools/ci/jobs/deheader.sh - find ./src/utils -type f -name "*.cpp" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_utils_withoutopengl_h: @@ -4395,7 +4409,7 @@ deheader_sdl2_utils_withoutopengl_h: - ./tools/ci/jobs/deheader.sh - find ./src/utils -type f -name "*.h" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_withoutopengl_cpp: @@ -4405,7 +4419,7 @@ deheader_sdl2_withoutopengl_cpp: - ./tools/ci/jobs/deheader.sh - find ./src -type f -name "*.cpp" ! -path "./src/*/*" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_withoutopengl_h: @@ -4415,7 +4429,7 @@ deheader_sdl2_withoutopengl_h: - ./tools/ci/jobs/deheader.sh - find ./src -type f -name "*.h" ! -path "./src/*/*" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared deheader_sdl2_withoutopengl_cc: @@ -4425,7 +4439,7 @@ deheader_sdl2_withoutopengl_cc: - ./tools/ci/jobs/deheader.sh - find ./src -type f -name "*.cc" -exec tools/ci/scripts/deheader.sh {} \; - ./tools/ci/jobs/deheader2.sh - <<: *job-shared + <<: *job-push <<: *job-deheader_sdl2_shared doxygen: @@ -4477,6 +4491,8 @@ mxe_gcc5_shared_32_tests: dependencies: - mxe_gcc5_shared_32_testsbin when: manual + except: + - triggers tags: - windows @@ -4492,6 +4508,8 @@ mxe_gcc5_shared_64_tests: dependencies: - mxe_gcc5_shared_64_testsbin when: manual + except: + - triggers tags: - windows |