diff options
author | Patrick J Cherry <patrick@bytemark.co.uk> | 2017-06-22 16:42:04 +0100 |
---|---|---|
committer | Patrick J Cherry <patrick@bytemark.co.uk> | 2017-06-22 16:42:04 +0100 |
commit | 9bf4d02e24c384ee3c24892278fabba4534e2af6 (patch) | |
tree | 01d8d64ec94a1e5b9325fe22d8da9c20776c2207 /.gitlab-ci.yml | |
parent | 0db800af457e5c3839156813bcbd8f5d3560b3a9 (diff) |
Add stretch jobs
Diffstat (limited to '.gitlab-ci.yml')
-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 |