blob: 937454db88ec5911b85d978a4fdca545e706777e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
stages:
- test
- package
- publish
test:jessie: &test
image: $CI_REGISTRY/docker-images/layers:$DISTRO-ruby
stage: test
services:
- postgres:9.4
variables:
POSTGRES_DB: mauve
POSTGRES_USER: mauveuser
POSTGRES_PASSWORD: ""
DISTRO: jessie
before_script:
- apt install postgresql-server-dev-9.4
script:
- 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"
test:stretch:
<<: *test
allow_failure: true
variables:
DISTRO: stretch
before_script:
- apt install postgresql-server-dev-9.6
package:jessie: &package
image: $CI_REGISTRY/docker-images/layers:$DISTRO-deb
stage: package
variables:
DISTRO: jessie
script:
- package
artifacts:
paths:
- pkg/
package:stretch:
<<: *package
allow_failure: true
variables:
DISTRO: stretch
publish:
stage: publish
tags:
- shell
script:
- publish
dependencies:
- package:jessie
|