-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpostgres.py
134 lines (129 loc) · 4.39 KB
/
postgres.py
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
"""
These are common steps specific for PostgreSQL.
"""
from buildbot.plugins import steps, util
PGINITDB = [
steps.ShellCommand(
name="Initialize postgres instance",
command=[
'initdb',
'-D', util.Interpolate("%(prop:builddir)s/pgdata"),
'-A', 'trust',
'-E', 'UTF-8',
'--locale=en_US.UTF-8',
],
env={'PATH': util.Interpolate(
"%(prop:builddir)s/usr/bin:${PATH}")},
haltOnFailure=True,
),
steps.ShellCommand(
name="Copy test specific GUCs",
command=[
'/bin/sh', '-c',
util.Interpolate(
"cat "
"%(prop:builddir)s/../guc/%(prop:buildername)s.$(git rev-parse --abbrev-ref HEAD).conf "
" >> %(prop:builddir)s/pgdata/postgresql.auto.conf"
),
],
haltOnFailure=True,
),
steps.ShellCommand(
name="Add custom GUC overrides",
doStepIf=lambda step: step.build.getProperties(). \
hasProperty("custom_postgresql.conf") and \
step.build.getProperty("custom_postgresql.conf"),
command=[
'/bin/sh', '-c',
util.Interpolate(
"echo \"%(prop:custom_postgresql.conf)s\" "
" >> %(prop:builddir)s/pgdata/postgresql.auto.conf"
),
],
haltOnFailure=True,
),
]
PGINSTALL = [
steps.Git(
name="Clone postgres",
repourl='https://github.com/postgres/postgres.git',
branch='master',
mode='full',
method='fresh',
haltOnFailure=True,
),
steps.ShellCommand(
name="Apply PostgreSQL patch",
doStepIf=lambda step: step.build.getProperties(). \
hasProperty("postgresql.patch") and \
step.build.getProperty("postgresql.patch"),
command=[
'/bin/sh', '-c',
util.Interpolate(
"echo \"%(prop:postgresql.patch)s\" > ../postgresql.patch && "
"base64 -d ../postgresql.patch | patch -p1"
),
],
haltOnFailure=True,
),
steps.Configure(
name="Configure postgres",
command=[
'./configure',
util.Interpolate("--prefix=%(prop:builddir)s/usr"),
'--without-icu'],
haltOnFailure=True,
),
steps.Compile(
name="Build postgres",
command=['/bin/sh', '-c', 'make -j $(nproc)'],
haltOnFailure=True,
),
steps.Compile(
name="Install postgres",
command=['make', 'install'],
haltOnFailure=True,
),
]
PGSTART = [
steps.ShellCommand(
name="Start postgres",
command=[
'pg_ctl',
'-D', util.Interpolate("%(prop:builddir)s/pgdata"),
'start',
'-l', util.Interpolate("%(prop:builddir)s/pgdata/pg.log"),
],
env={'PATH': util.Interpolate(
"%(prop:builddir)s/usr/bin:${PATH}")},
haltOnFailure=True,
),
steps.ShellCommand(
name="Capture PostgreSQL configuration",
command=[
'psql', '-c',
'COPY (SELECT name, setting, source FROM pg_settings ' \
'ORDER BY lower(name)) TO STDOUT (FORMAT CSV, HEADER)',
],
env={
'PATH': util.Interpolate("%(prop:builddir)s/usr/bin:${PATH}"),
'PGDATABASE': 'postgres',
},
haltOnFailure=True,
),
]
PGSTOP = [
steps.ShellCommand(
name="Stop postgres",
command=[
'pg_ctl',
'-D', util.Interpolate("%(prop:builddir)s/pgdata"),
'stop',
'-m', 'immediate',
],
env={'PATH': util.Interpolate(
"%(prop:builddir)s/usr/bin:${PATH}")
},
alwaysRun=True,
),
]