diff options
author | Patrick J Cherry <patrick@bytemark.co.uk> | 2017-03-20 22:21:26 +0000 |
---|---|---|
committer | Patrick J Cherry <patrick@bytemark.co.uk> | 2017-03-20 22:21:26 +0000 |
commit | 750de8efee27a3ea42c505bd1c8965134466e582 (patch) | |
tree | c4ef380804a8b931079e352e1c5c49405ed85191 | |
parent | 9497809c98ba16d93d5291b6753e9cc3fb562684 (diff) |
Fixed yaml
-rw-r--r-- | .gitlab-ci.yml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 1215d24..f2a3b2c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -12,14 +12,13 @@ test:jessie: &test POSTGRES_DB: mauve POSTGRES_USER: mauveuser POSTGRES_PASSWORD: "" - variables: DISTRO: jessie before_script: - apt install libpq-dev postgresql-server-dev-9.4 script: - apt install libsqlite3-dev rake ruby-log4r ruby-ipaddress ruby-json ruby-sanitize ruby-rubymail thin ruby-haml ruby-haml-contrib ruby-redcloth ruby-rack ruby-rack-protection ruby-rack-flash3 ruby-tilt ruby-sinatra ruby-locale ruby-rack-test ruby-webmock ruby-timecop ruby-test-unit - bundle install -j $(nproc) --path vendor/bundle --without development - - POSTGRES_URL=postgres://$POSTGRES_USER:$POSTGRES_PASSWORD@postgres/$POSTGRES_DB bundle exec rake test + - "POSTGRES_URL=postgres://$POSTGRES_USER:$POSTGRES_PASSWORD@postgres/$POSTGRES_DB bundle exec rake test" .test:stretch: <<: *test |