123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698 |
- stages:
- - lint
- - prebuild
- - build
- - deploy
- # with :; prevent from run it on windows
- before_script:
- - ":; uname -a"
- - ":; cat /etc/os-release"
- - ":; pwd"
- - ":; cat /proc/sys/kernel/core_pattern"
- - ":; mkdir logs || true"
- - ":; ${UPDATEREPOS}"
- - ":; ${DOCKERRETRY} ${PMUPDATE} >logs/apt.log"
- - ":; ${DOCKERRETRY} ${PMINSTALL} ${PACKAGES} >>logs/apt.log"
- image: debian:unstable
- variables:
- GET_SOURCES_ATTEMPTS: "5"
- ARTIFACT_DOWNLOAD_ATTEMPTS: "5"
- UPDATEREPOS: "tools/ci/scripts/updaterepos.sh"
- PMUPDATE: "apt-get update"
- PMINSTALL: "apt-get install -y -qq"
- DOCKERRETRY: "./tools/ci/scripts/dockerretry.sh"
- GIT_DEPTH: "1"
- .job-push: &job-push
- artifacts:
- paths:
- - logs
- when: always
- expire_in: 3 week
- except:
- - triggers
- dependencies: []
- .job-always: &job-always
- artifacts:
- paths:
- - logs
- when: always
- expire_in: 3 week
- dependencies: []
- .job-pages: &job-pages
- artifacts:
- paths:
- - logs
- - public
- when: always
- expire_in: 1 day
- dependencies:
- - doxygen
- - gcov_gcc6
- # pre build
- gcc-5_c++11_i386:
- stage: prebuild
- script:
- - ./tools/ci/scripts/patchsdl1.sh
- - ./tools/ci/jobs/gcc5_c++11.sh
- - ./tools/ci/scripts/runtests.sh
- image: i386/ubuntu:xenial
- <<: *job-push
- variables:
- PACKAGES: gcc-5 g++-5
- make autoconf automake autopoint gettext
- libxml2-dev libcurl4-gnutls-dev libpng-dev
- libsdl-gfx1.2-dev libsdl-image1.2-dev libsdl-mixer1.2-dev libsdl-net1.2-dev libsdl-ttf2.0-dev
- gdb valgrind netcat-openbsd procps
- tags:
- - docker
- gcc-8-i386:
- stage: prebuild
- script:
- - ./tools/ci/scripts/patchsdl1.sh
- - ./tools/ci/jobs/gcc8.sh
- - ./tools/ci/scripts/runtests.sh
- image: i386/debian:buster
- <<: *job-push
- variables:
- PACKAGES: gcc-8 g++-8
- make autoconf automake autopoint gettext
- libxml2-dev libcurl4-gnutls-dev libpng-dev
- libsdl-gfx1.2-dev libsdl-image1.2-dev libsdl-mixer1.2-dev libsdl-net1.2-dev libsdl-ttf2.0-dev
- gdb valgrind netcat-openbsd procps
- tags:
- - docker
- gcc-snapshot_sdl2:
- stage: prebuild
- script:
- - export PATH="/usr/lib/gcc-snapshot/bin:/usr/lib/gcc-snapshot/lib:$PATH"
- - export LD_LIBRARY_PATH="/usr/lib/gcc-snapshot/lib:$LD_LIBRARY_PATH"
- - ./tools/ci/jobs/gccsnapshot_sdl2.sh
- - ./tools/ci/scripts/runtests.sh
- <<: *job-push
- variables:
- ABOUTYOFFSET: 380
- PACKAGES: gcc-snapshot
- make autoconf automake autopoint gettext
- libxml2-dev libcurl4-gnutls-dev libpng-dev
- libsdl2-gfx-dev libsdl2-image-dev libsdl2-mixer-dev libsdl2-net-dev libsdl2-ttf-dev
- git gdb valgrind netcat-openbsd procps
- tags:
- - docker
- gcc-10-i386:
- stage: prebuild
- script:
- - ./tools/ci/scripts/patchsdl1.sh
- - ./tools/ci/jobs/gcc10.sh
- - ./tools/ci/scripts/runtests.sh
- - ./tools/ci/scripts/rundyecmd.sh
- image: i386/debian:unstable
- <<: *job-push
- variables:
- PACKAGES: gcc-10 g++-10
- make autoconf automake autopoint gettext
- libxml2-dev libcurl4-gnutls-dev libpng-dev
- libsdl-gfx1.2-dev libsdl-image1.2-dev libsdl-mixer1.2-dev libsdl-net1.2-dev libsdl-ttf2.0-dev
- gdb valgrind netcat-openbsd procps
- tags:
- - docker
- clang-3.9:
- stage: prebuild
- script:
- - ./tools/ci/scripts/patchsdl1.sh
- - ./tools/ci/jobs/clang39.sh
- - ./tools/ci/scripts/runtests.sh
- - ./tools/ci/scripts/rundyecmd.sh
- image: debian:stretch
- <<: *job-push
- variables:
- PACKAGES: clang-3.9 libc++-dev libc++abi-dev
- make autoconf automake autopoint gettext
- libxml2-dev libcurl4-gnutls-dev libpng-dev
- libsdl-gfx1.2-dev libsdl-image1.2-dev libsdl-mixer1.2-dev libsdl-net1.2-dev libsdl-ttf2.0-dev
- gdb valgrind netcat-openbsd procps
- gcc-6:
- stage: prebuild
- script:
- - ./tools/ci/scripts/patchsdl1.sh
- - ./tools/ci/jobs/gcc6.sh
- - ./tools/ci/scripts/runtests.sh
- - ./tools/ci/scripts/rundyecmd.sh
- image: debian:stretch
- <<: *job-push
- variables:
- PACKAGES: gcc-6 g++-6
- make autoconf automake autopoint gettext
- libxml2-dev libcurl4-gnutls-dev libpng-dev
- libsdl-gfx1.2-dev libsdl-image1.2-dev libsdl-mixer1.2-dev libsdl-net1.2-dev libsdl-ttf2.0-dev
- gdb valgrind netcat-openbsd procps
- gcc-8:
- stage: prebuild
- script:
- - ./tools/ci/scripts/patchsdl1.sh
- - ./tools/ci/jobs/gcc8.sh
- - ./tools/ci/scripts/runtests.sh
- - ./tools/ci/scripts/rundyecmd.sh
- image: debian:buster
- <<: *job-push
- variables:
- PACKAGES: gcc-8 g++-8
- make autoconf automake autopoint gettext
- libxml2-dev libcurl4-gnutls-dev libpng-dev
- libsdl-gfx1.2-dev libsdl-image1.2-dev libsdl-mixer1.2-dev libsdl-net1.2-dev libsdl-ttf2.0-dev
- gdb valgrind netcat-openbsd procps
- gcc-6_default:
- stage: prebuild
- script:
- - ./tools/ci/scripts/patchsdl1.sh
- - ./tools/ci/jobs/any_compiler.sh --enable-werror
- - ./tools/ci/scripts/runtests.sh
- - ./tools/ci/scripts/rundyecmd.sh
- image: debian:stretch
- <<: *job-push
- variables:
- LOGFILE: gcc6.log
- CC: gcc-6
- CXX: g++-6
- CXXFLAGS: "-Wall -Wextra"
- PACKAGES: gcc-6 g++-6
- make autoconf automake autopoint gettext
- libxml2-dev libcurl4-gnutls-dev libpng-dev
- libsdl-gfx1.2-dev libsdl-image1.2-dev libsdl-mixer1.2-dev libsdl-net1.2-dev libsdl-ttf2.0-dev
- gdb valgrind netcat-openbsd procps
- gcc-10_default:
- stage: prebuild
- script:
- - ./tools/ci/scripts/patchsdl1.sh
- - ./tools/ci/jobs/any_compiler.sh --enable-werror
- - ./tools/ci/scripts/runtests.sh
- - ./tools/ci/scripts/rundyecmd.sh
- <<: *job-push
- variables:
- LOGFILE: gcc10.log
- CC: gcc-10
- CXX: g++-10
- CXXFLAGS: "-Wall -Wextra"
- PACKAGES: gcc-10 g++-10
- make autoconf automake autopoint gettext
- libxml2-dev libcurl4-gnutls-dev libpng-dev
- libsdl-gfx1.2-dev libsdl-image1.2-dev libsdl-mixer1.2-dev libsdl-net1.2-dev libsdl-ttf2.0-dev
- gdb valgrind netcat-openbsd procps
- mxe_gcc6_shared_32:
- only:
- - branches@manaplus/manaplus
- stage: prebuild
- script:
- - ls /mxe
- - ./tools/ci/jobs/mxe_gcc6.sh
- <<: *job-push
- image: registry.gitlab.com/manaplus/mxe:gcc6_shared_32
- variables:
- PACKAGES: bash
- CROSS: i686-w64-mingw32.shared
- tags:
- - docker
- mxe_gcc6_shared_64:
- only:
- - branches@manaplus/manaplus
- stage: prebuild
- script:
- - ls /mxe
- - ./tools/ci/jobs/mxe_gcc6.sh
- <<: *job-push
- image: registry.gitlab.com/manaplus/mxe:gcc6_shared_64
- variables:
- PACKAGES: bash
- CROSS: x86_64-w64-mingw32.shared
- tags:
- - docker
- gcc-5_sdl2:
- stage: prebuild
- script:
- - ./tools/ci/jobs/gcc5_sdl2.sh
- - ./tools/ci/scripts/rundyecmd.sh
- - ./tools/ci/scripts/runtests.sh
- - ./tools/ci/jobs/gcc5_sdl2_c++11.sh
- - ./tools/ci/scripts/runtests.sh
- <<: *job-push
- image: ubuntu:xenial
- variables:
- PACKAGES: gcc-5 g++-5
- make autoconf automake autopoint gettext
- libxml2-dev libcurl4-gnutls-dev libpng-dev
- libsdl2-gfx-dev libsdl2-image-dev libsdl2-mixer-dev libsdl2-net-dev libsdl2-ttf-dev
- gdb valgrind netcat-openbsd procps
- gcc-10_game_only:
- stage: prebuild
- script:
- - ./tools/ci/scripts/patchsdl1.sh
- - ./tools/ci/jobs/gcc10.sh --without-dyecmd
- - ./tools/ci/scripts/runtests.sh
- <<: *job-push
- variables:
- PACKAGES: gcc-10 g++-10
- make autoconf automake autopoint gettext
- libxml2-dev libcurl4-gnutls-dev libpng-dev
- libsdl-gfx1.2-dev libsdl-image1.2-dev libsdl-mixer1.2-dev libsdl-net1.2-dev libsdl-ttf2.0-dev
- gdb valgrind netcat-openbsd procps
- gcc-10_dyecmd_only:
- stage: prebuild
- script:
- - ./tools/ci/scripts/patchsdl1.sh
- - ./tools/ci/jobs/gcc10.sh --without-manaplusgame
- - ./tools/ci/scripts/rundyecmd.sh
- <<: *job-push
- variables:
- PACKAGES: gcc-10 g++-10
- make autoconf automake autopoint gettext
- libxml2-dev libcurl4-gnutls-dev libpng-dev
- libsdl-gfx1.2-dev libsdl-image1.2-dev libsdl-mixer1.2-dev libsdl-net1.2-dev libsdl-ttf2.0-dev
- gcc-8_unittestsbin:
- stage: prebuild
- script:
- - ./tools/ci/scripts/patchsdl1.sh
- - ./tools/ci/jobs/gcc8_silent.sh --enable-unittestsbin --without-manaplusgame --without-dyecmd
- image: debian:buster
- <<: *job-push
- variables:
- PACKAGES: gcc-8 g++-8
- make autoconf automake autopoint gettext
- libxml2-dev libcurl4-gnutls-dev libpng-dev
- libsdl-gfx1.2-dev libsdl-image1.2-dev libsdl-mixer1.2-dev libsdl-net1.2-dev libsdl-ttf2.0-dev
- mplint:
- stage: lint
- script:
- - ./tools/ci/jobs/mplint.sh src
- - ./tools/ci/jobs/mplint.sh po
- - ./tools/ci/jobs/mplint.sh data
- <<: *job-push
- variables:
- PACKAGES: gcc g++ git
- make autoconf automake autopoint gettext
- linters:
- stage: lint
- script:
- - ./tools/ci/jobs/pngcheck.sh
- - ./tools/ci/jobs/imagemagiccheck.sh
- - ./tools/ci/jobs/cpplint.sh
- - ./tools/ci/jobs/nsiqcppstyle.sh
- image: debian:buster
- <<: *job-push
- variables:
- PACKAGES: python wget pngcheck imagemagick git grep
- gcc-5_h_all:
- stage: prebuild
- script:
- - ./tools/ci/scripts/patchsdl1.sh
- - ./tools/ci/jobs/gcc5_h.sh -std=c++0x -DDEBUGBUILD -DTMWA_SUPPORT -DENABLE_NLS -DUSE_OPENGL -DENABLE_LIBXML -I/usr/include/SDL
- - ./tools/ci/jobs/gcc5_h.sh -std=c++0x -DDEBUGBUILD -DTMWA_SUPPORT -DENABLE_LIBXML -I/usr/include/SDL
- - ./tools/ci/jobs/gcc5_h.sh -std=c++0x -DDEBUGBUILD -DTMWA_SUPPORT -DENABLE_NLS -DUSE_OPENGL -DENABLE_LIBXML -DUNITTESTS -DUNITTESTS_CATCH -DUNITTESTS_EMBED -I/usr/include/SDL
- - ./tools/ci/jobs/gcc5_h.sh -std=c++0x -DDEBUGBUILD -DTMWA_SUPPORT -DENABLE_NLS -DENABLE_LIBXML -I/usr/include/SDL
- - ./tools/ci/jobs/gcc5_h.sh -std=c++0x -DDEBUGBUILD -DENABLE_NLS -DUSE_OPENGL -DENABLE_LIBXML -I/usr/include/SDL
- <<: *job-push
- image: ubuntu:xenial
- variables:
- PACKAGES: gcc-5 g++-5
- make autoconf automake autopoint gettext
- libxml2-dev libcurl4-gnutls-dev libpng-dev
- libsdl-gfx1.2-dev libsdl-image1.2-dev libsdl-mixer1.2-dev libsdl-net1.2-dev libsdl-ttf2.0-dev
- gcc-5_h_all_i386:
- stage: prebuild
- script:
- - ./tools/ci/scripts/patchsdl1.sh
- - ./tools/ci/jobs/gcc5_h.sh -std=c++0x -DDEBUGBUILD -DTMWA_SUPPORT -DENABLE_NLS -DUSE_OPENGL -DENABLE_LIBXML -I/usr/include/SDL
- - ./tools/ci/jobs/gcc5_h.sh -std=c++0x -DDEBUGBUILD -DTMWA_SUPPORT -DENABLE_LIBXML -I/usr/include/SDL
- - ./tools/ci/jobs/gcc5_h.sh -std=c++0x -DDEBUGBUILD -DTMWA_SUPPORT -DENABLE_NLS -DUSE_OPENGL -DENABLE_LIBXML -DUNITTESTS -DUNITTESTS_CATCH -DUNITTESTS_EMBED -I/usr/include/SDL
- - ./tools/ci/jobs/gcc5_h.sh -std=c++0x -DDEBUGBUILD -DTMWA_SUPPORT -DENABLE_NLS -DENABLE_LIBXML -I/usr/include/SDL
- - ./tools/ci/jobs/gcc5_h.sh -std=c++0x -DDEBUGBUILD -DENABLE_NLS -DUSE_OPENGL -DENABLE_LIBXML -I/usr/include/SDL
- image: i386/ubuntu:xenial
- <<: *job-push
- variables:
- PACKAGES: gcc-5 g++-5
- make autoconf automake autopoint gettext
- libxml2-dev libcurl4-gnutls-dev libpng-dev
- libsdl-gfx1.2-dev libsdl-image1.2-dev libsdl-mixer1.2-dev libsdl-net1.2-dev libsdl-ttf2.0-dev
- tags:
- - docker
- gcov_gcc6:
- stage: build
- image: debian:stretch
- script:
- - mkdir -p coverage/
- - ./tools/ci/scripts/patchsdl1.sh
- - ./tools/ci/jobs/gcc6_tests_gcov.sh --without-dyecmd --without-manaplusgame
- variables:
- PACKAGES: gcc-6 g++-6
- make autoconf automake autopoint gettext
- libxml2-dev libcurl4-gnutls-dev libpng-dev
- libsdl-gfx1.2-dev libsdl-image1.2-dev libsdl-mixer1.2-dev libsdl-net1.2-dev libsdl-ttf2.0-dev
- gcovr
- git-core valgrind
- coverage: /^\s*lines:\s*\d+.\d+\%/
- artifacts:
- paths:
- - coverage
- expire_in: 2 days
- name: ${CI_JOB_NAME}-${CI_COMMIT_REF_NAME}-${CI_COMMIT_SHA}
- reports:
- coverage_report:
- coverage_format: cobertura
- path: coverage/gcc-6.xml
- tags:
- - docker
- doxygen:
- stage: build
- image: debian:stretch
- script:
- - ./tools/ci/scripts/patchsdl1.sh
- - ./tools/ci/jobs/doxygen.sh
- variables:
- PACKAGES: doxygen graphviz
- libxml2-dev libcurl4-gnutls-dev libpng-dev
- libsdl-gfx1.2-dev libsdl-image1.2-dev libsdl-mixer1.2-dev libsdl-net1.2-dev libsdl-ttf2.0-dev
- git-core
- artifacts:
- paths:
- - doxygen
- expire_in: 2 days
- tags:
- - docker
- pages:
- stage: deploy
- image: debian:stretch
- script:
- - mkdir -p public
- - cp -r doxygen/html/ public/doxygen/
- - cp -r coverage/ public/coverage/
- - echo "<DOCTYPE html><head></head><body><a href='./doxygen/index.html'>Doxygen</a><br><a href='./coverage/gcc-6.html'>Coverage</a></body>" > public/index.html
- <<: *job-pages
- # tests
- triggers:
- stage: build
- only:
- - branches@manaplus/manaplus
- script:
- - ./tools/ci/scripts/triggers.sh
- <<: *job-push
- variables:
- PACKAGES: curl
- # disabled due gitlab bug
- .gcc-10_SDL_SDL-1.2_sanitize2_test:
- stage: build
- script:
- - ./tools/ci/scripts/downloadlib.sh ${LIBNAME} ${LIBVERSION}
- - echo /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ${runenvz}
- - export LD_PRELOAD=/usr/lib/x86_64-linux-gnu/libasan.so.4
- - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ${runenvx} ${runenvz} env
- - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ${runenvx} ${runenvz} ./tools/ci/jobs/gcc10_sanitize_tests.sh --enable-unittests=yes --without-manaplusgame --without-dyecmd
- - 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-push
- variables:
- LIBNAME: SDL
- LIBVERSION: SDL-1.2_asan
- PACKAGES: gcc-10 g++-10
- make autoconf automake autopoint gettext pkg-config
- libx11-dev libxext-dev libxt-dev libxv-dev x11proto-core-dev libgl1-mesa-dev libasound2-dev libglu1-mesa-dev libicu-dev
- valgrind
- wget unzip
- JOBS: 1
- ASAN_OPTIONS: "detect_leaks=0"
- runenvz: /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runzlib_master.sh
- runenvx: /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runlibxml2_master.sh
- tags:
- - docker
- # disabled due gitlab bug
- .gcc-10_SDL_default_sanitize2_test:
- stage: build
- script:
- - ./tools/ci/scripts/downloadlib.sh ${LIBNAME} ${LIBVERSION}
- - export LD_PRELOAD=/usr/lib/x86_64-linux-gnu/libasan.so.4
- - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ${runenvx} ${runenvz} ./tools/ci/jobs/gcc10_sanitize_tests.sh --enable-unittests=yes --with-sdl2 --without-manaplusgame --without-dyecmd
- - 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-push
- variables:
- LIBNAME: SDL
- LIBVERSION: default_asan
- PACKAGES: gcc-10 g++-10
- make autoconf automake autopoint gettext pkg-config
- libx11-dev libxext-dev libxt-dev libxv-dev x11proto-core-dev libgl1-mesa-dev libasound2-dev libicu-dev
- valgrind
- wget unzip
- JOBS: 1
- ASAN_OPTIONS: "detect_leaks=0"
- runenvz: /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runzlib_master.sh
- runenvx: /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runlibxml2_master.sh
- tags:
- - docker
- # disabled due gitlab bug
- .gcc-10_SDL_SDL-1.2_sanitize_test:
- stage: build
- script:
- - ./tools/ci/scripts/downloadlib.sh ${LIBNAME} ${LIBVERSION}
- - echo /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ${runenvz}
- - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ${runenvx} ${runenvz} env
- - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ${runenvx} ${runenvz} ./tools/ci/jobs/gcc10_sanitize_tests.sh --enable-unittests=yes --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-push
- variables:
- LIBNAME: SDL
- LIBVERSION: SDL-1.2
- PACKAGES: gcc-10 g++-10
- make autoconf automake autopoint gettext pkg-config
- libx11-dev libxext-dev libxt-dev libxv-dev x11proto-core-dev libgl1-mesa-dev libasound2-dev libglu1-mesa-dev libicu-dev
- valgrind
- wget unzip
- runenvz: /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runzlib_master.sh
- runenvx: /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runlibxml2_master.sh
- tags:
- - docker
- # disabled due gitlab bug
- .gcc-10_SDL_default_sanitize_test:
- stage: build
- script:
- - ./tools/ci/scripts/downloadlib.sh ${LIBNAME} ${LIBVERSION}
- - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ${runenvx} ${runenvz} ./tools/ci/jobs/gcc10_sanitize_tests.sh --enable-unittests=yes --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-push
- variables:
- LIBNAME: SDL
- LIBVERSION: default
- PACKAGES: gcc-10 g++-10
- make autoconf automake autopoint gettext pkg-config
- libx11-dev libxext-dev libxt-dev libxv-dev x11proto-core-dev libgl1-mesa-dev libasound2-dev libicu-dev
- valgrind
- wget unzip
- runenvz: /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runzlib_master.sh
- runenvx: /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runlibxml2_master.sh
- tags:
- - docker
- # disabled due gitlab bug
- .gcc-10_SDL_SDL-1.2_old_sanitize_test:
- stage: build
- script:
- - ./tools/ci/scripts/downloadlib.sh ${LIBNAME} ${LIBVERSION}
- - echo /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ${runenvz}
- - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ${runenvx} ${runenvz} env
- - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ${runenvx} ${runenvz} ./tools/ci/jobs/gcc10_sanitize_tests.sh --enable-unittests=yes --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-push
- variables:
- LIBNAME: SDL
- LIBVERSION: SDL-1.2_old
- PACKAGES: gcc-10 g++-10
- make autoconf automake autopoint gettext pkg-config
- libx11-dev libxext-dev libxt-dev libxv-dev x11proto-core-dev libgl1-mesa-dev libasound2-dev libglu1-mesa-dev libicu-dev
- valgrind
- libjpeg-dev libtiff-dev
- wget unzip
- runenvz: /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runzlib_v1.2.5.sh
- runenvx: /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runlibxml2_v2.9.1.sh
- POST_CXXFLAGS: "-Wno-undef"
- tags:
- - docker
- # disabled due gitlab bug
- .gcc-10_SDL_default_old_sanitize_test:
- stage: build
- script:
- - ./tools/ci/scripts/downloadlib.sh ${LIBNAME} ${LIBVERSION}
- - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ${runenvx} ${runenvz} ./tools/ci/jobs/gcc10_sanitize_tests.sh --enable-unittests=yes --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-push
- variables:
- LIBNAME: SDL
- LIBVERSION: default_old
- PACKAGES: gcc-10 g++-10
- make autoconf automake autopoint gettext pkg-config
- libx11-dev libxext-dev libxt-dev libxv-dev x11proto-core-dev libgl1-mesa-dev libasound2-dev libicu-dev
- valgrind
- libjpeg-dev libtiff-dev
- wget unzip
- runenvz: /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runzlib_v1.2.5.sh
- runenvx: /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runlibxml2_v2.9.1.sh
- POST_CXXFLAGS: "-Wno-undef"
- tags:
- - docker
- # error compilation. cant find SDL.
- .gcc-10_zlib_ng_develop:
- stage: build
- script:
- - ./tools/ci/scripts/patchsdl1.sh
- - ./tools/ci/scripts/downloadlib.sh ${LIBNAME} ${LIBVERSION}
- - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ./tools/ci/jobs/gcc10.sh
- - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ./tools/ci/scripts/checkldd.sh src/manaplus
- - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ./tools/ci/scripts/runtests.sh
- <<: *job-push
- variables:
- LIBNAME: zlib_ng
- LIBVERSION: develop
- PACKAGES: gcc-10 g++-10
- make autoconf automake autopoint gettext
- libxml2-dev libcurl4-gnutls-dev libpng-dev
- libsdl-gfx1.2-dev libsdl-image1.2-dev libsdl-mixer1.2-dev libsdl-net1.2-dev libsdl-ttf2.0-dev
- wget unzip gdb valgrind netcat-openbsd procps
- tags:
- - docker
- # disabled due gitlab bug
- .gcc-10_SDL_SDL-1.2_sanitize:
- stage: build
- script:
- - ./tools/ci/scripts/downloadlib.sh ${LIBNAME} ${LIBVERSION}
- - echo /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ${runenvz}
- - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ${runenvx} ${runenvz} env
- - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ${runenvx} ${runenvz} ./tools/ci/jobs/gcc10_sanitize.sh
- - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ${runenvx} ${runenvz} ./tools/ci/scripts/runtests.sh
- - ldd ./src/manaplus | grep "libasan"
- <<: *job-push
- variables:
- LIBNAME: SDL
- LIBVERSION: SDL-1.2
- PACKAGES: gcc-10 g++-10
- make autoconf automake autopoint gettext pkg-config
- libx11-dev libxext-dev libxt-dev libxv-dev x11proto-core-dev libgl1-mesa-dev libasound2-dev libglu1-mesa-dev libicu-dev
- valgrind netcat-openbsd
- wget unzip
- runenvz: /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runzlib_master.sh
- runenvx: /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runlibxml2_master.sh
- tags:
- - docker
- # disabled due gitlab bug
- .gcc-10_SDL_default_sanitize:
- stage: build
- script:
- - ./tools/ci/scripts/downloadlib.sh ${LIBNAME} ${LIBVERSION}
- - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ${runenvx} ${runenvz} ./tools/ci/jobs/gcc10_sanitize.sh --with-sdl2
- - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ${runenvx} ${runenvz} ./tools/ci/scripts/runtests.sh
- - ldd ./src/manaplus | grep "libasan"
- <<: *job-push
- variables:
- LIBNAME: SDL
- LIBVERSION: default
- PACKAGES: gcc-10 g++-10
- make autoconf automake autopoint gettext pkg-config
- libx11-dev libxext-dev libxt-dev libxv-dev x11proto-core-dev libgl1-mesa-dev libasound2-dev libicu-dev
- valgrind netcat-openbsd
- wget unzip
- runenvz: /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runzlib_master.sh
- runenvx: /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runlibxml2_master.sh
- tags:
- - docker
- # disabled due gitlab bug
- .gcc-10_SDL_SDL-1.2_old_sanitize:
- stage: build
- script:
- - ./tools/ci/scripts/downloadlib.sh ${LIBNAME} ${LIBVERSION}
- - echo /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ${runenvz}
- - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ${runenvx} ${runenvz} env
- - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ${runenvx} ${runenvz} ./tools/ci/jobs/gcc10_sanitize.sh
- - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ${runenvx} ${runenvz} ./tools/ci/scripts/runtests.sh
- - ldd ./src/manaplus | grep "libasan"
- <<: *job-push
- variables:
- LIBNAME: SDL
- LIBVERSION: SDL-1.2_old
- PACKAGES: gcc-10 g++-10
- make autoconf automake autopoint gettext pkg-config
- libx11-dev libxext-dev libxt-dev libxv-dev x11proto-core-dev libgl1-mesa-dev libasound2-dev libglu1-mesa-dev libicu-dev
- valgrind netcat-openbsd
- libjpeg-dev libtiff-dev
- wget unzip
- runenvz: /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runzlib_v1.2.5.sh
- runenvx: /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runlibxml2_v2.9.1.sh
- POST_CXXFLAGS: "-Wno-undef"
- tags:
- - docker
- # disabled due gitlab bug
- .gcc-10_SDL_default_old_sanitize:
- stage: build
- script:
- - ./tools/ci/scripts/downloadlib.sh ${LIBNAME} ${LIBVERSION}
- - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ${runenvx} ${runenvz} ./tools/ci/jobs/gcc10_sanitize.sh --with-sdl2
- - /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runenv.sh ${runenvx} ${runenvz} ./tools/ci/scripts/runtests.sh
- - ldd ./src/manaplus | grep "libasan"
- <<: *job-push
- variables:
- LIBNAME: SDL
- LIBVERSION: default_old
- PACKAGES: gcc-10 g++-10
- make autoconf automake autopoint gettext pkg-config
- libx11-dev libxext-dev libxt-dev libxv-dev x11proto-core-dev libgl1-mesa-dev libasound2-dev libicu-dev
- valgrind netcat-openbsd
- libjpeg-dev libtiff-dev
- wget unzip
- runenvz: /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runzlib_v1.2.5.sh
- runenvx: /usr/local/spm/bin/${LIBNAME}_${LIBVERSION}/runlibxml2_v2.9.1.sh
- POST_CXXFLAGS: "-Wno-undef"
- tags:
- - docker
|