summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-04-28 00:41:01 +0300
committerAndrei Karas <akaras@inbox.ru>2016-04-28 00:41:01 +0300
commitf7d24f7bffbe30fd36de5cc3e9bd8a2183877678 (patch)
treebf34c068d92f30b7527ae5cd5e156799daaee531 /.gitlab-ci.yml
parent98d959aa5baac9739fea921dc845c47f33cca300 (diff)
downloadevol-hercules-f7d24f7bffbe30fd36de5cc3e9bd8a2183877678.tar.gz
evol-hercules-f7d24f7bffbe30fd36de5cc3e9bd8a2183877678.tar.bz2
evol-hercules-f7d24f7bffbe30fd36de5cc3e9bd8a2183877678.tar.xz
evol-hercules-f7d24f7bffbe30fd36de5cc3e9bd8a2183877678.zip
Add plugin validator into ci scripts.
Disable for now gcc 5 build.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml11
1 files changed, 10 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 204b2e5..f271691 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,5 +1,6 @@
stages:
- build
+ - test
- success
- failure
@@ -8,12 +9,20 @@ before_script:
# simple builds
-gcc-5:
+.gcc-5:
stage: build
script:
- ./tools/ci/jobs/gcc5.sh --enable-werror
image: debian:unstable
+# tests
+
+"plugin validator":
+ stage: test
+ script:
+ - ./tools/ci/jobs/validate.sh
+ image: debian:unstable
+
# reports
success: