-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitlab-ci.yml
More file actions
25 lines (25 loc) · 851 Bytes
/
.gitlab-ci.yml
File metadata and controls
25 lines (25 loc) · 851 Bytes
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
test:
image: debian:buster
script:
- apt-get update -qq && apt-get install -y
bison flex
postgresql-11 postgresql-server-dev-11
build-essential autoconf libtool libcunit1-dev
xsltproc docbook-xsl docbook-mathml dblatex
libproj-dev libgdal-dev libgeos-dev libjson-c-dev
libprotobuf-c1 libprotobuf-c-dev protobuf-c-compiler
- lsb_release -a
- uname -a
- service postgresql start
- su -l postgres -c "createuser -s `whoami`"
- ./autogen.sh
- ./configure
- make maintainer-clean
- ./autogen.sh
- ./configure CFLAGS="-Wall -fno-omit-frame-pointer -Werror"
- make
- RUNTESTFLAGS=-v make check
- RUNTESTFLAGS="-v --dumprestore" make check
- make install
- RUNTESTFLAGS=-v make installcheck
- RUNTESTFLAGS="-v --dumprestore" make installcheck