summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2018-06-15 05:32:37 +0300
committerAndrei Karas <akaras@inbox.ru>2018-06-15 05:32:37 +0300
commit78c59a24d3d65e97d3b21291684d0819f246cc6b (patch)
treecdd44c9235cd49adbb40d70249afbb0512840395
parent324418d439e16051d0010a9baf172b17d6f90bb7 (diff)
downloadplus-ci_gcc5.tar.gz
plus-ci_gcc5.tar.bz2
plus-ci_gcc5.tar.xz
plus-ci_gcc5.zip
Use includes in .gitlab-ci.ymlci_gcc5
-rw-r--r--.gitlab-ci.yml338
1 files changed, 3 insertions, 335 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index ac7c319d5..7de658cfc 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,335 +1,3 @@
-stages:
- - build
-
-# 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"
- - ":; ./tools/ci/scripts/clonesrc.sh"
- - ":; cd manaplus"
-
-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
- dependencies: []
-
-.job-always: &job-always
- artifacts:
- paths:
- - logs
- when: always
- expire_in: 3 week
- dependencies: []
-
-gcc-5_c++11_i386:
- stage: build
- script:
- - ./tools/ci/jobs/gcc5_c++11.sh
- - ./tools/ci/scripts/runtests.sh
- image: vicamo/debian:sid-i386
- <<: *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
- git gdb valgrind netcat-openbsd procps
- tags:
- - docker
-
-gcc-5_sdl2:
- stage: build
- script:
- - ./tools/ci/jobs/gcc5_sdl2.sh
- - ./tools/ci/scripts/runtests.sh
- - ./tools/ci/jobs/gcc5_sdl2_c++11.sh
- - ./tools/ci/scripts/runtests.sh
- <<: *job-push
- 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
- git gdb valgrind netcat-openbsd procps
-
-gcc-5_sanitize_tests:
- stage: build
- script:
- - ./tools/ci/jobs/gcc5_sanitize_tests.sh
- - ldd ./src/manaplustests | grep "libasan"
- <<: *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
- git valgrind
- tags:
- - docker
-
-# configure test look like crashed
-.gcc-5_sanitize_tests_i386:
- stage: build
- script:
- - ./tools/ci/jobs/gcc5_sanitize_tests.sh --without-dyecmd --without-manaplusgame
- - ldd ./src/manaplustests | grep "libasan"
- image: vicamo/debian:sid-i386
- <<: *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
- git valgrind
- tags:
- - docker
-
-gcc-5_sanitize_no_opengl_tests:
- stage: build
- script:
- - ./tools/ci/jobs/gcc5_sanitize_tests.sh --without-opengl --without-dyecmd --without-manaplusgame
- - ldd ./src/manaplustests | grep "libasan"
- <<: *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
- git valgrind
- tags:
- - docker
-
-# configure test look like crashed
-.gcc-5_sanitize_no_opengltests_i386:
- stage: build
- script:
- - ./tools/ci/jobs/gcc5_sanitize_tests.sh --without-opengl --without-dyecmd --without-manaplusgame
- - ldd ./src/manaplustests | grep "libasan"
- image: vicamo/debian:sid-i386
- <<: *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
- git valgrind
- tags:
- - docker
-
-gcc-5_sanitize:
- stage: build
- script:
- - ./tools/ci/jobs/gcc5_sanitize.sh
- - ./tools/ci/scripts/runtests.sh
- <<: *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
- git gdb valgrind netcat-openbsd procps
- tags:
- - docker
-
-# look like configure test crashing
-.gcc-5_sanitize_i386:
- stage: build
- script:
- - ./tools/ci/jobs/gcc5_sanitize.sh
- - ./tools/ci/scripts/runtests.sh
- image: vicamo/debian:sid-i386
- <<: *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
- git gdb valgrind netcat-openbsd procps
- tags:
- - docker
-
-gcc-5_tests:
- stage: build
- script:
- - ./tools/ci/jobs/gcc5_tests.sh --without-dyecmd
- <<: *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
- git valgrind
- tags:
- - docker
-
-gcc-5_tests_i386:
- stage: build
- script:
- - ./tools/ci/jobs/gcc5_tests.sh --without-dyecmd --without-manaplusgame
- image: vicamo/debian:sid-i386
- <<: *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
- git valgrind
- tags:
- - docker
-
-gcc-5_sdl2_tests:
- stage: build
- script:
- - ./tools/ci/jobs/gcc5_sdl2_tests.sh --without-manaplusgame --enable-glibcdebug
- - ./tools/ci/jobs/gcc5_sdl2_tests.sh --without-manaplusgame --enable-stldebug
- <<: *job-push
- 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
- git valgrind
- tags:
- - docker
-
-gcc-5_sdl2_tests_i386:
- stage: build
- script:
- - ./tools/ci/jobs/gcc5_sdl2_tests.sh --without-dyecmd --without-manaplusgame
- image: vicamo/debian:sid-i386
- <<: *job-push
- 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
- git valgrind
- tags:
- - docker
-
-gcc-5_sdl2_no_opengl_tests:
- stage: build
- script:
- - ./tools/ci/jobs/gcc5_sdl2_tests.sh --without-opengl --without-dyecmd --without-manaplusgame
- <<: *job-push
- 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
- git valgrind
- tags:
- - docker
-
-gcc-5_sdl2_no_opengl_tests_i386:
- stage: build
- script:
- - ./tools/ci/jobs/gcc5_sdl2_tests.sh --without-opengl --without-dyecmd --without-manaplusgame
- image: vicamo/debian:sid-i386
- <<: *job-push
- 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
- git valgrind
- tags:
- - docker
-
-gcc-5:
- stage: build
- script:
- - ./tools/ci/jobs/gcc5.sh --enable-werror
- - ./tools/ci/scripts/runtests.sh
- - ./tools/ci/jobs/gcc5_c++11.sh
- - ./tools/ci/scripts/runtests.sh
- <<: *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
- git gdb valgrind netcat-openbsd procps
-
-gcc-5_sdl2_c++11_i386:
- stage: build
- script:
- - ./tools/ci/jobs/gcc5_sdl2_c++11.sh
- - ./tools/ci/scripts/runtests.sh
- image: vicamo/debian:sid-i386
- <<: *job-push
- 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
- git gdb valgrind netcat-openbsd procps
- tags:
- - docker
-
-gcc-5_default:
- stage: build
- script:
- - ./tools/ci/jobs/any_compiler.sh --enable-werror
- - ./tools/ci/scripts/runtests.sh
- <<: *job-push
- variables:
- LOGFILE: gcc5.log
- CC: gcc-5
- CXX: g++-5
- CXXFLAGS: "-Wall -Wextra"
- 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
- git gdb valgrind netcat-openbsd procps
-
-gcc-5_default_i386:
- stage: build
- script:
- - ./tools/ci/jobs/any_compiler.sh --enable-werror
- - ./tools/ci/scripts/runtests.sh
- <<: *job-push
- image: vicamo/debian:sid-i386
- variables:
- LOGFILE: gcc5.log
- CC: gcc-5
- CXX: g++-5
- CXXFLAGS: "-Wall -Wextra"
- 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
- git gdb valgrind netcat-openbsd procps
- tags:
- - docker
-
-gcc-5_tarball:
- stage: build
- script:
- - ./tools/ci/jobs/gcc5_tarball.sh
- <<: *job-push
- variables:
- PACKAGES: gcc-5 g++-5
- make autoconf automake autopoint gettext
- libxml2-dev libcurl4-gnutls-dev libpng-dev
- git libsdl-gfx1.2-dev libsdl-image1.2-dev libsdl-mixer1.2-dev libsdl-net1.2-dev libsdl-ttf2.0-dev
+include:
+ - "https://gitlab.com/manaplus/manaplus/raw/master/tools/ci/branches/.gitlab-ci_header.yml"
+ - "https://gitlab.com/manaplus/manaplus/raw/master/tools/ci/branches/ci_gcc5/.gitlab-ci.yml"