summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2020-11-07 21:21:14 -0300
committerJesusaves <cpntb1@ymail.com>2020-11-07 21:21:14 -0300
commit5ed8af49ca636c3969be2404074bbc154310805d (patch)
treeccbae54f96daf6d66e21b3eca688980b69813a4e
parent2d0c4f74a7490f4d074cdf4774e279890f517925 (diff)
downloadclientdata-jesusalva/sillytest.tar.gz
clientdata-jesusalva/sillytest.tar.bz2
clientdata-jesusalva/sillytest.tar.xz
clientdata-jesusalva/sillytest.zip
Remove the Contributors CI testjesusalva/sillytest
-rw-r--r--.gitlab-ci.yml6
-rwxr-xr-x.tools/contributors.sh24
2 files changed, 0 insertions, 30 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index cad8194a..df624bd7 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -14,12 +14,6 @@ testxml:
- ./.tools/testxml.sh
- pwd
-contributors:
- stage: test
- script:
- - ./.tools/contributors.sh
- - pwd
-
pngcheck:
stage: test
script:
diff --git a/.tools/contributors.sh b/.tools/contributors.sh
deleted file mode 100755
index 487c3cb4..00000000
--- a/.tools/contributors.sh
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/bin/bash
-
-source ./.tools/init.sh
-
-clientdata_init
-
-aptget_update
-aptget_install git-core gcc ca-certificates libxml2-utils make xsltproc
-rm -rf tools
-gitclone https://gitlab.com/evol evol-tools.git tools
-
-cd tools/contrib_xsl
-
-make about-server
-check_error $?
-
-cd ../../clientdata
-
-export RES=$(git diff)
-if [[ -n "${RES}" ]]; then
- echo "Contributors list not updated"
- git diff
- exit 1
-fi