summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2018-06-15 02:32:26 +0300
committerAndrei Karas <akaras@inbox.ru>2018-06-15 02:32:26 +0300
commit61f10e01c756377cf4920cdeb40442d32b5673f8 (patch)
treed29e8e99dfbfdbbf7507d2c200fff050c32147c4
parentdf242704f31e325448fb781b805b0193e0b5b0d8 (diff)
downloadplus-61f10e01c756377cf4920cdeb40442d32b5673f8.tar.gz
plus-61f10e01c756377cf4920cdeb40442d32b5673f8.tar.bz2
plus-61f10e01c756377cf4920cdeb40442d32b5673f8.tar.xz
plus-61f10e01c756377cf4920cdeb40442d32b5673f8.zip
Move header from branched .gitlab-ci.yml into separate file.
-rw-r--r--tools/ci/branches/.gitlab-ci_header.yml26
-rw-r--r--tools/ci/branches/ci_checks/.gitlab-ci.yml26
-rw-r--r--tools/ci/branches/ci_clang-tidy/.gitlab-ci.yml26
-rw-r--r--tools/ci/branches/ci_clang3x/.gitlab-ci.yml26
-rw-r--r--tools/ci/branches/ci_clang4_5/.gitlab-ci.yml26
-rw-r--r--tools/ci/branches/ci_clang6/.gitlab-ci.yml26
-rw-r--r--tools/ci/branches/ci_clang7/.gitlab-ci.yml26
-rw-r--r--tools/ci/branches/ci_customnls/.gitlab-ci.yml26
-rw-r--r--tools/ci/branches/ci_deheader/.gitlab-ci.yml26
-rw-r--r--tools/ci/branches/ci_fedora/.gitlab-ci.yml26
-rw-r--r--tools/ci/branches/ci_gcc-snapshot/.gitlab-ci.yml26
-rw-r--r--tools/ci/branches/ci_gcc3/.gitlab-ci.yml26
-rw-r--r--tools/ci/branches/ci_gcc49/.gitlab-ci.yml26
-rw-r--r--tools/ci/branches/ci_gcc4x/.gitlab-ci.yml30
-rw-r--r--tools/ci/branches/ci_gcc5/.gitlab-ci.yml26
-rw-r--r--tools/ci/branches/ci_gcc6/.gitlab-ci.yml26
-rw-r--r--tools/ci/branches/ci_gcc6_tests/.gitlab-ci.yml26
-rw-r--r--tools/ci/branches/ci_gcc7/.gitlab-ci.yml26
-rw-r--r--tools/ci/branches/ci_gcc7_tests/.gitlab-ci.yml26
-rw-r--r--tools/ci/branches/ci_glibcdebug/.gitlab-ci.yml26
-rw-r--r--tools/ci/branches/ci_h/.gitlab-ci.yml26
-rw-r--r--tools/ci/branches/ci_main1/.gitlab-ci.yml26
-rw-r--r--tools/ci/branches/ci_malloc/.gitlab-ci.yml26
-rw-r--r--tools/ci/branches/ci_mse/.gitlab-ci.yml26
-rw-r--r--tools/ci/branches/ci_mxe/.gitlab-ci.yml23
-rw-r--r--tools/ci/branches/ci_site/.gitlab-ci.yml21
-rw-r--r--tools/ci/branches/ci_xmllibs/.gitlab-ci.yml26
27 files changed, 26 insertions, 672 deletions
diff --git a/tools/ci/branches/.gitlab-ci_header.yml b/tools/ci/branches/.gitlab-ci_header.yml
new file mode 100644
index 000000000..faeae1416
--- /dev/null
+++ b/tools/ci/branches/.gitlab-ci_header.yml
@@ -0,0 +1,26 @@
+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"
diff --git a/tools/ci/branches/ci_checks/.gitlab-ci.yml b/tools/ci/branches/ci_checks/.gitlab-ci.yml
index 56a630412..07a540a1e 100644
--- a/tools/ci/branches/ci_checks/.gitlab-ci.yml
+++ b/tools/ci/branches/ci_checks/.gitlab-ci.yml
@@ -1,29 +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:
diff --git a/tools/ci/branches/ci_clang-tidy/.gitlab-ci.yml b/tools/ci/branches/ci_clang-tidy/.gitlab-ci.yml
index 38cd864c9..d18705a5a 100644
--- a/tools/ci/branches/ci_clang-tidy/.gitlab-ci.yml
+++ b/tools/ci/branches/ci_clang-tidy/.gitlab-ci.yml
@@ -1,29 +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:
diff --git a/tools/ci/branches/ci_clang3x/.gitlab-ci.yml b/tools/ci/branches/ci_clang3x/.gitlab-ci.yml
index 7d1849e26..85451693e 100644
--- a/tools/ci/branches/ci_clang3x/.gitlab-ci.yml
+++ b/tools/ci/branches/ci_clang3x/.gitlab-ci.yml
@@ -1,29 +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:
diff --git a/tools/ci/branches/ci_clang4_5/.gitlab-ci.yml b/tools/ci/branches/ci_clang4_5/.gitlab-ci.yml
index 73a7e19fd..7c2a757c1 100644
--- a/tools/ci/branches/ci_clang4_5/.gitlab-ci.yml
+++ b/tools/ci/branches/ci_clang4_5/.gitlab-ci.yml
@@ -1,29 +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:
diff --git a/tools/ci/branches/ci_clang6/.gitlab-ci.yml b/tools/ci/branches/ci_clang6/.gitlab-ci.yml
index 2d3d06969..cccdbe23c 100644
--- a/tools/ci/branches/ci_clang6/.gitlab-ci.yml
+++ b/tools/ci/branches/ci_clang6/.gitlab-ci.yml
@@ -1,29 +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:
diff --git a/tools/ci/branches/ci_clang7/.gitlab-ci.yml b/tools/ci/branches/ci_clang7/.gitlab-ci.yml
index 58471df1d..5231ad073 100644
--- a/tools/ci/branches/ci_clang7/.gitlab-ci.yml
+++ b/tools/ci/branches/ci_clang7/.gitlab-ci.yml
@@ -1,29 +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:
diff --git a/tools/ci/branches/ci_customnls/.gitlab-ci.yml b/tools/ci/branches/ci_customnls/.gitlab-ci.yml
index 19d6e33a6..1d8720bcd 100644
--- a/tools/ci/branches/ci_customnls/.gitlab-ci.yml
+++ b/tools/ci/branches/ci_customnls/.gitlab-ci.yml
@@ -1,29 +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:
diff --git a/tools/ci/branches/ci_deheader/.gitlab-ci.yml b/tools/ci/branches/ci_deheader/.gitlab-ci.yml
index 15737a320..8852d4565 100644
--- a/tools/ci/branches/ci_deheader/.gitlab-ci.yml
+++ b/tools/ci/branches/ci_deheader/.gitlab-ci.yml
@@ -1,29 +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:
diff --git a/tools/ci/branches/ci_fedora/.gitlab-ci.yml b/tools/ci/branches/ci_fedora/.gitlab-ci.yml
index 4ee892390..2b9651a54 100644
--- a/tools/ci/branches/ci_fedora/.gitlab-ci.yml
+++ b/tools/ci/branches/ci_fedora/.gitlab-ci.yml
@@ -1,29 +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:
diff --git a/tools/ci/branches/ci_gcc-snapshot/.gitlab-ci.yml b/tools/ci/branches/ci_gcc-snapshot/.gitlab-ci.yml
index fb730b769..a45754285 100644
--- a/tools/ci/branches/ci_gcc-snapshot/.gitlab-ci.yml
+++ b/tools/ci/branches/ci_gcc-snapshot/.gitlab-ci.yml
@@ -1,29 +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:
diff --git a/tools/ci/branches/ci_gcc3/.gitlab-ci.yml b/tools/ci/branches/ci_gcc3/.gitlab-ci.yml
index 0ef2f68ed..4c3d14b2b 100644
--- a/tools/ci/branches/ci_gcc3/.gitlab-ci.yml
+++ b/tools/ci/branches/ci_gcc3/.gitlab-ci.yml
@@ -1,29 +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:
diff --git a/tools/ci/branches/ci_gcc49/.gitlab-ci.yml b/tools/ci/branches/ci_gcc49/.gitlab-ci.yml
index 7f351a02e..3be4c9a0e 100644
--- a/tools/ci/branches/ci_gcc49/.gitlab-ci.yml
+++ b/tools/ci/branches/ci_gcc49/.gitlab-ci.yml
@@ -1,29 +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:
diff --git a/tools/ci/branches/ci_gcc4x/.gitlab-ci.yml b/tools/ci/branches/ci_gcc4x/.gitlab-ci.yml
index be8928e71..3eb36c7db 100644
--- a/tools/ci/branches/ci_gcc4x/.gitlab-ci.yml
+++ b/tools/ci/branches/ci_gcc4x/.gitlab-ci.yml
@@ -1,33 +1,3 @@
-stages:
- - prebuild
- - build
- - stats
- - ok
- - fail
-
-# 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:
diff --git a/tools/ci/branches/ci_gcc5/.gitlab-ci.yml b/tools/ci/branches/ci_gcc5/.gitlab-ci.yml
index 6fc561ce1..088e4ad03 100644
--- a/tools/ci/branches/ci_gcc5/.gitlab-ci.yml
+++ b/tools/ci/branches/ci_gcc5/.gitlab-ci.yml
@@ -1,29 +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:
diff --git a/tools/ci/branches/ci_gcc6/.gitlab-ci.yml b/tools/ci/branches/ci_gcc6/.gitlab-ci.yml
index a30eac791..f7acd1afd 100644
--- a/tools/ci/branches/ci_gcc6/.gitlab-ci.yml
+++ b/tools/ci/branches/ci_gcc6/.gitlab-ci.yml
@@ -1,29 +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:
diff --git a/tools/ci/branches/ci_gcc6_tests/.gitlab-ci.yml b/tools/ci/branches/ci_gcc6_tests/.gitlab-ci.yml
index 49a302e9e..4c3f3355f 100644
--- a/tools/ci/branches/ci_gcc6_tests/.gitlab-ci.yml
+++ b/tools/ci/branches/ci_gcc6_tests/.gitlab-ci.yml
@@ -1,29 +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:
diff --git a/tools/ci/branches/ci_gcc7/.gitlab-ci.yml b/tools/ci/branches/ci_gcc7/.gitlab-ci.yml
index 2ce4f9e4c..7a7859522 100644
--- a/tools/ci/branches/ci_gcc7/.gitlab-ci.yml
+++ b/tools/ci/branches/ci_gcc7/.gitlab-ci.yml
@@ -1,29 +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:
diff --git a/tools/ci/branches/ci_gcc7_tests/.gitlab-ci.yml b/tools/ci/branches/ci_gcc7_tests/.gitlab-ci.yml
index 7bf696fa6..a2e41fb34 100644
--- a/tools/ci/branches/ci_gcc7_tests/.gitlab-ci.yml
+++ b/tools/ci/branches/ci_gcc7_tests/.gitlab-ci.yml
@@ -1,29 +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:
diff --git a/tools/ci/branches/ci_glibcdebug/.gitlab-ci.yml b/tools/ci/branches/ci_glibcdebug/.gitlab-ci.yml
index 576c8871d..ada59ca90 100644
--- a/tools/ci/branches/ci_glibcdebug/.gitlab-ci.yml
+++ b/tools/ci/branches/ci_glibcdebug/.gitlab-ci.yml
@@ -1,29 +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:
diff --git a/tools/ci/branches/ci_h/.gitlab-ci.yml b/tools/ci/branches/ci_h/.gitlab-ci.yml
index 247a553f6..0859c4a17 100644
--- a/tools/ci/branches/ci_h/.gitlab-ci.yml
+++ b/tools/ci/branches/ci_h/.gitlab-ci.yml
@@ -1,29 +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:
diff --git a/tools/ci/branches/ci_main1/.gitlab-ci.yml b/tools/ci/branches/ci_main1/.gitlab-ci.yml
index 4a0a42c1f..898a2c872 100644
--- a/tools/ci/branches/ci_main1/.gitlab-ci.yml
+++ b/tools/ci/branches/ci_main1/.gitlab-ci.yml
@@ -1,29 +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:
diff --git a/tools/ci/branches/ci_malloc/.gitlab-ci.yml b/tools/ci/branches/ci_malloc/.gitlab-ci.yml
index 30541b245..83638cd71 100644
--- a/tools/ci/branches/ci_malloc/.gitlab-ci.yml
+++ b/tools/ci/branches/ci_malloc/.gitlab-ci.yml
@@ -1,29 +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:
diff --git a/tools/ci/branches/ci_mse/.gitlab-ci.yml b/tools/ci/branches/ci_mse/.gitlab-ci.yml
index 176fcf42a..ec32617c2 100644
--- a/tools/ci/branches/ci_mse/.gitlab-ci.yml
+++ b/tools/ci/branches/ci_mse/.gitlab-ci.yml
@@ -1,29 +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:
diff --git a/tools/ci/branches/ci_mxe/.gitlab-ci.yml b/tools/ci/branches/ci_mxe/.gitlab-ci.yml
index f86541ede..5e7526c7a 100644
--- a/tools/ci/branches/ci_mxe/.gitlab-ci.yml
+++ b/tools/ci/branches/ci_mxe/.gitlab-ci.yml
@@ -2,29 +2,6 @@ stages:
- build
- tests
-# 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:
diff --git a/tools/ci/branches/ci_site/.gitlab-ci.yml b/tools/ci/branches/ci_site/.gitlab-ci.yml
index 14f7f45ab..b422f9587 100644
--- a/tools/ci/branches/ci_site/.gitlab-ci.yml
+++ b/tools/ci/branches/ci_site/.gitlab-ci.yml
@@ -2,27 +2,6 @@ stages:
- build
- stats
-# 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:
diff --git a/tools/ci/branches/ci_xmllibs/.gitlab-ci.yml b/tools/ci/branches/ci_xmllibs/.gitlab-ci.yml
index 06d931c7a..576b29827 100644
--- a/tools/ci/branches/ci_xmllibs/.gitlab-ci.yml
+++ b/tools/ci/branches/ci_xmllibs/.gitlab-ci.yml
@@ -1,29 +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: