diff options
-rw-r--r-- | .gitlab-ci.yml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0a21beb..937454d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -20,8 +20,9 @@ test:jessie: &test - bundle install -j $(nproc) --path vendor/bundle --without development - "POSTGRES_URL=postgres://$POSTGRES_USER:$POSTGRES_PASSWORD@postgres/$POSTGRES_DB bundle exec rake test" -.test:stretch: +test:stretch: <<: *test + allow_failure: true variables: DISTRO: stretch before_script: @@ -38,8 +39,9 @@ package:jessie: &package paths: - pkg/ -.package:stretch: +package:stretch: <<: *package + allow_failure: true variables: DISTRO: stretch |