forked from pgbouncer/pgbouncer
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.drone.yml
32 lines (31 loc) · 916 Bytes
/
.drone.yml
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
pipeline:
build-debian:
image: pexeso/pexeso-build-debian:9.3
commands:
- apt-get update
- apt-get install -y libevent-dev python-docutils devscripts build-essential lintian
- git submodule init
- git submodule update
- ./autogen.sh
- ./configure --with-pmgr
- make
- make deb
- mkdir -p proto/debian/
- mv ../*.deb proto/debian/
- ls -lR proto
- dpkg -c proto/debian/*.deb
build-ubuntu:
image: pexeso/pexeso-build-ubuntu:16.04
commands:
- apt-get update
- apt-get install -y libevent-dev python-docutils devscripts build-essential lintian dh-systemd
- git submodule init
- git submodule update
- ./autogen.sh
- ./configure --with-pmgr
- make
- make deb
- mkdir -p proto/ubuntu/
- mv ../*.deb proto/ubuntu/
- ls -lR proto
- dpkg -c proto/debian/*.deb