From b35d3023119faaa4503e13fd3e8632df4374c83b Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sat, 30 Dec 2017 19:11:24 +0300 Subject: Add .gitlab-ci.yml from all ci branches. --- tools/ci/branches/ci_gcc3/.gitlab-ci.yml | 69 ++++++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 tools/ci/branches/ci_gcc3/.gitlab-ci.yml (limited to 'tools/ci/branches/ci_gcc3') diff --git a/tools/ci/branches/ci_gcc3/.gitlab-ci.yml b/tools/ci/branches/ci_gcc3/.gitlab-ci.yml new file mode 100644 index 000000000..0ef2f68ed --- /dev/null +++ b/tools/ci/branches/ci_gcc3/.gitlab-ci.yml @@ -0,0 +1,69 @@ +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 + - 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-3_sdl1: + stage: build + script: + - ./tools/ci/jobs/gcc3.sh + - ./tools/ci/scripts/runtests.sh + image: registry.gitlab.com/manaplus/images:gentoo_gcc3_sdl1 + <<: *job-push + variables: + PMUPDATE: "echo" + PMINSTALL: "echo" + tags: + - docker + +gcc-3_sdl2: + stage: build + script: + - ./tools/ci/jobs/gcc3.sh --with-sdl2 + - ./tools/ci/scripts/runtests.sh + image: registry.gitlab.com/manaplus/images:gentoo_gcc3_sdl2 + <<: *job-push + variables: + PMUPDATE: "echo" + PMINSTALL: "echo" + tags: + - docker -- cgit v1.2.3-60-g2f50