summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorvarac <varacanero@zeromail.org>2016-08-31 11:36:03 +0200
committervarac <varacanero@zeromail.org>2016-08-31 11:36:08 +0200
commit1fb2c0f7b654a91946681413ea969458750cbf3f (patch)
tree1a9236b67de74cde710ac18b4d1e1fd254a82418 /.gitlab-ci.yml
parentba786b012876c66987c875ea7660feef2c8f420e (diff)
allow lint,syntax and validate jobs to fails
We fixed them in 0.9 so we don't care too much for these checks. The most important thing to check is the actual build.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml8
1 files changed, 3 insertions, 5 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index f2a763c0..d523ed6e 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -13,16 +13,19 @@ lint:
stage: syntax
script:
- bundle exec rake lint
+ allow_failure: true
syntax:
stage: syntax
script:
- bundle exec rake syntax
+ allow_failure: true
validate:
stage: syntax
script:
- bundle exec rake validate
+ allow_failure: true
templates:
stage: syntax
@@ -34,11 +37,6 @@ catalog:
script:
- bundle exec rake catalog
-#rspec:
-# stage: rspec
-# script:
-# - bundle exec rake spec
-
build:
stage: build
script: