forked from postgrespro/pgsphere
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitlab-ci.yml
More file actions
22 lines (20 loc) · 791 Bytes
/
.gitlab-ci.yml
File metadata and controls
22 lines (20 loc) · 791 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
stages:
- build
.build: &build
stage: build
image: credativ/postgresql-build:${PGVERSION}
before_script:
- apt-get -y install libhealpix-cxx-dev docbook-dsssl docbook-xml openjade
script:
- make PROFILE="-Werror"
- make install
- if ! pg_virtualenv make installcheck; then cat regression.diffs; exit 1; fi
- make -C doc
- make -C doc install
build:9.4: { <<: *build, variables: { PGVERSION: '9.4' } }
build:9.5: { <<: *build, variables: { PGVERSION: '9.5' } }
build:9.6: { <<: *build, variables: { PGVERSION: '9.6' } }
build:10: { <<: *build, variables: { PGVERSION: '10' } }
build:11: { <<: *build, variables: { PGVERSION: '11' } }
build:12: { <<: *build, variables: { PGVERSION: '12' } }
build:13: { <<: *build, variables: { PGVERSION: '13' } }