From b2eb2dbca6028f825cf221abe7154fdfdb6ed4e3 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Mon, 1 Jun 2020 02:08:29 +0300 Subject: Add gcc-10 ci branches --- tools/ci/branches/ci_gcc10/.gitlab-ci.yml | 157 ++++++++++++++++++++++++++++++ 1 file changed, 157 insertions(+) create mode 100644 tools/ci/branches/ci_gcc10/.gitlab-ci.yml (limited to 'tools/ci/branches/ci_gcc10') diff --git a/tools/ci/branches/ci_gcc10/.gitlab-ci.yml b/tools/ci/branches/ci_gcc10/.gitlab-ci.yml new file mode 100644 index 000000000..1584c709e --- /dev/null +++ b/tools/ci/branches/ci_gcc10/.gitlab-ci.yml @@ -0,0 +1,157 @@ +.job-push: &job-push + artifacts: + paths: + - logs + - manaplus/logs + when: always + expire_in: 3 week + dependencies: [] + +.job-always: &job-always + artifacts: + paths: + - logs + - manaplus/logs + when: always + expire_in: 3 week + dependencies: [] + +gcc-10-i386: + stage: build + script: + - ./tools/ci/scripts/patchsdl1.sh + - ./tools/ci/jobs/gcc10.sh + - ./tools/ci/scripts/runtests.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 + git gdb valgrind netcat-openbsd procps + tags: + - docker + +gcc-10: + stage: build + script: + - ./tools/ci/scripts/patchsdl1.sh + - ./tools/ci/jobs/gcc10.sh + - ./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 + git gdb valgrind netcat-openbsd procps + +gcc-10_sdl2: + stage: build + script: + - ./tools/ci/jobs/gcc10.sh --with-sdl2 + - ./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 + libsdl2-gfx-dev libsdl2-image-dev libsdl2-mixer-dev libsdl2-net-dev libsdl2-ttf-dev + git gdb valgrind netcat-openbsd procps + +gcc-10_sdl2_i386: + stage: build + script: + - ./tools/ci/jobs/gcc10.sh --with-sdl2 + - ./tools/ci/scripts/runtests.sh + <<: *job-push + image: i386/debian:unstable + variables: + PACKAGES: gcc-10 g++-10 + 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 + +gcc-10_default: + stage: build + script: + - ./tools/ci/scripts/patchsdl1.sh + - ./tools/ci/jobs/any_compiler.sh --enable-werror + - ./tools/ci/scripts/runtests.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 + git gdb valgrind netcat-openbsd procps + +gcc-10_sanitize: + stage: build + script: + - ./tools/ci/scripts/patchsdl1.sh + - ./tools/ci/jobs/gcc10_sanitize.sh + - ./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 + git gdb valgrind netcat-openbsd procps + tags: + - docker + +gcc-10_sanitize_sdl2: + stage: build + script: + - ./tools/ci/jobs/gcc10_sanitize.sh --with-sdl2 + - ./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 + 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_lto: + stage: build + script: + - ./tools/ci/scripts/patchsdl1.sh + - ./tools/ci/jobs/gcc10_lto.sh + - ./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 + git gdb valgrind netcat-openbsd procps + POST_CXXFLAGS: "-Wno-null-dereference" + +gcc-10_lto_i386: + stage: build + script: + - ./tools/ci/scripts/patchsdl1.sh + - ./tools/ci/jobs/gcc10_lto.sh + - ./tools/ci/scripts/runtests.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 + git gdb valgrind netcat-openbsd procps + POST_CXXFLAGS: "-Wno-null-dereference" + tags: + - docker -- cgit v1.2.3-60-g2f50