diff options
| -rw-r--r-- | .gitlab-ci.yml | 8 | 
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:  | 
