diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-05-02 19:29:38 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-05-02 19:29:38 +0300 |
commit | a3d04a4586b806fe76372da7716b911bb9a7742c (patch) | |
tree | ee1a8dc7cee22d3304d943c27aafe9746836e87a | |
parent | 631fd34aa1cf881c9f1752d8169065a8d2638f92 (diff) | |
download | plugin-a3d04a4586b806fe76372da7716b911bb9a7742c.tar.gz plugin-a3d04a4586b806fe76372da7716b911bb9a7742c.tar.bz2 plugin-a3d04a4586b806fe76372da7716b911bb9a7742c.tar.xz plugin-a3d04a4586b806fe76372da7716b911bb9a7742c.zip |
Remove code validation script from ci.
Now it useless.
-rw-r--r-- | .gitlab-ci.yml | 7 | ||||
-rwxr-xr-x | tools/ci/jobs/validate.sh | 20 |
2 files changed, 0 insertions, 27 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index dad14cb..082683e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,6 +1,5 @@ stages: - build - - test - success - failure @@ -29,12 +28,6 @@ clang-3.9: # tests -plugin-validator: - stage: test - script: - - ./tools/ci/jobs/validate.sh - image: debian:unstable - # reports success: diff --git a/tools/ci/jobs/validate.sh b/tools/ci/jobs/validate.sh deleted file mode 100755 index da56baf..0000000 --- a/tools/ci/jobs/validate.sh +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/bash - -export CC=gcc-5 -export CXX=g++-5 -export LOGFILE=gcc5.log - -source ./tools/ci/scripts/init.sh - -aptget_install git-core ca-certificates \ - make python - -do_init -rm -rf tools -rm -rf server-code -clone_tool -clone_servercode -cd evol-hercules - -make validate -check_error $? |