aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorPatrick J Cherry <patrick@bytemark.co.uk>2017-06-22 14:25:01 +0100
committerPatrick J Cherry <patrick@bytemark.co.uk>2017-06-22 14:25:01 +0100
commit7491376bc872b4ff7b4c8367fe094322098a010a (patch)
treec9fd04c484a580cb24934839140d73a73093d000 /.gitlab-ci.yml
parentce399f3203cbd7f5834fb5fb93d36576adb85834 (diff)
Updated Gemfile.lock, and gitlab-ci to install dev libraries
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 1cde8d2..0a21beb 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -14,9 +14,9 @@ test:jessie: &test
POSTGRES_PASSWORD: ""
DISTRO: jessie
before_script:
- - apt install libpq-dev postgresql-server-dev-9.4
+ - apt install postgresql-server-dev-9.4
script:
- - apt install libsqlite3-dev
+ - apt install libsqlite3-dev zlib1g-dev libxml2-dev ruby-dev libpq-dev
- bundle install -j $(nproc) --path vendor/bundle --without development
- "POSTGRES_URL=postgres://$POSTGRES_USER:$POSTGRES_PASSWORD@postgres/$POSTGRES_DB bundle exec rake test"
@@ -25,7 +25,7 @@ test:jessie: &test
variables:
DISTRO: stretch
before_script:
- - apt install libpq-dev postgresql-server-dev-9.6
+ - apt install postgresql-server-dev-9.6
package:jessie: &package
image: $CI_REGISTRY/docker-images/layers:$DISTRO-deb