forked from essc/inasafe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fabfile.py
296 lines (247 loc) · 10.1 KB
/
fabfile.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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
# ~/fabfile.py
# A Fabric file for carrying out various administrative tasks with InaSAFE.
# Tim Sutton, Jan 2013
import os
from fabric.api import *
from datetime import datetime
from fabric.contrib.files import contains, exists, append, sed
import fabtools
from fabtools import require
from fabgis import fabgis
# Don't remove even though its unused
from fabtools.vagrant import vagrant
# Usage for localhost commands:
#
# fab localhost [command]
#
# e.g. fab localhost update
#
# To run remotely do
#
# fab remote [command]
#
# e.g.
#
# fab -H 188.40.123.80:8697 show_environment
#
# To run on a vagrant vhost do
#
# fab vagrant show_environment
#
# e.g. fab vagrant show_environment
# Note: Vagrant tasks will only run if they @task decorator is used on
# the function. See show_environment function below.
# Usage fab localhost [command]
# or fab remote [command]
# e.g. fab localhost initialise_qgis_plugin_repo
# Global options
env.env_set = False
def _all():
"""Things to do regardless of whether command is local or remote."""
if env.env_set:
fastprint('Environment already set!\n')
return
fastprint('Setting environment!\n')
# Key is hostname as it resolves by running hostname directly on the server
# value is desired web site url to publish the repo as.
doc_site_names = {
'waterfall': 'inasafe-docs.localhost',
'spur': 'inasafe-docs.localhost',
'maps.linfiniti.com': 'inasafe-docs.linfiniti.com',
'linfiniti': 'inasafe-docs.linfiniti.com',
#vagrant instance
'precise64': 'inasafe-docs.vagrant.localhost',
'shiva': 'docs.inasafe.org'}
repo_site_names = {
'waterfall': 'inasafe-test.localhost',
'spur': 'inasafe-test.localhost',
'maps.linfiniti.com': 'inasafe-test.linfiniti.com',
'linfiniti': 'inasafe-crisis.linfiniti.com',
#vagrant instance
'inasafe': 'experimental.vagrant.localhost',
'shiva': 'experimental.inasafe.org'}
with hide('output'):
env.user = run('whoami')
env.hostname = run('hostname')
if env.hostname not in repo_site_names:
print 'Error: %s not in: \n%s' % (env.hostname, repo_site_names)
exit()
elif env.hostname not in doc_site_names:
print 'Error: %s not in: \n%s' % (env.hostname, repo_site_names)
exit()
else:
env.repo_site_name = repo_site_names[env.hostname]
env.doc_site_name = doc_site_names[env.hostname]
env.plugin_repo_path = '/home/web/inasafe-test'
env.inasafe_docs_path = '/home/web/inasafe-docs'
env.home = os.path.join('/home/', env.user)
env.repo_path = os.path.join(env.home,
'dev',
'python')
env.git_url = 'git://github.com/AIFDR/inasafe.git'
env.repo_alias = 'inasafe-test'
env.code_path = os.path.join(env.repo_path, env.repo_alias)
env.env_set = True
fastprint('env.env_set = %s' % env.env_set)
###############################################################################
# Next section contains helper methods tasks
###############################################################################
def initialise_qgis_plugin_repo():
"""Initialise a QGIS plugin repo where we host test builds."""
_all()
fabtools.require.deb.package('libapache2-mod-wsgi')
code_path = os.path.join(env.repo_path, env.repo_alias)
local_path = '%s/scripts/test-build-repo' % code_path
if not exists(env.plugin_repo_path):
sudo('mkdir -p %s' % env.plugin_repo_path)
sudo('chown %s.%s %s' % (env.user, env.user, env.plugin_repo_path))
run('cp %s/plugin* %s' % (local_path, env.plugin_repo_path))
run('cp %s/icon* %s' % (code_path, env.plugin_repo_path))
run('cp %(local_path)s/inasafe-test.conf.templ '
'%(local_path)s/inasafe-test.conf' % {'local_path': local_path})
sed('%s/inasafe-test.conf' % local_path,
'inasafe-test.linfiniti.com',
env.repo_site_name)
with cd('/etc/apache2/sites-available/'):
if exists('inasafe-test.conf'):
sudo('a2dissite inasafe-test.conf')
fastprint('Removing old apache2 conf', False)
sudo('rm inasafe-test.conf')
sudo('ln -s %s/inasafe-test.conf .' % local_path)
# Add a hosts entry for local testing - only really useful for localhost
hosts = '/etc/hosts'
if not contains(hosts, 'inasafe-test'):
append(hosts, '127.0.0.1 %s' % env.repo_site_name, use_sudo=True)
sudo('a2ensite inasafe-test.conf')
sudo('service apache2 reload')
def update_git_checkout(branch='master'):
"""Make sure there is a read only git checkout.
Args:
branch: str - a string representing the name of the branch to build
from. Defaults to 'master'
To run e.g.::
fab -H 188.40.123.80:8697 remote update_git_checkout
"""
_all()
fabtools.require.deb.package('git')
if not exists(env.code_path):
fastprint('Repo checkout does not exist, creating.')
run('mkdir -p %s' % env.repo_path)
with cd(env.repo_path):
run('git clone %s %s' % (env.git_url, env.repo_alias))
else:
fastprint('Repo checkout does exist, updating.')
with cd(env.code_path):
# Get any updates first
run('git fetch')
# Get rid of any local changes
run('git reset --hard')
# Get back onto master branch
run('git checkout master')
# Remove any local changes in master
run('git reset --hard')
# Delete all local branches
#run('git branch | grep -v \* | xargs git branch -D')
with cd(env.code_path):
if branch != 'master':
run('git branch --track %s origin/%s' %
(branch, branch))
run('git checkout %s' % branch)
else:
run('git checkout master')
run('git pull')
###############################################################################
# Next section contains actual tasks
###############################################################################
@task
def build_test_package(branch='master'):
"""Create a test package and publish it in our repo.
Args:
branch: str - a string representing the name of the branch to build
from. Defaults to 'master'.
To run e.g.::
fab -H 188.40.123.80:8697 build_test_package
or to package up a specific branch (in this case minimum_needs)
fab -H 88.198.36.154:8697 build_test_package:minimum_needs
.. note:: Using the branch option will not work for branches older than 1.1
"""
_all()
update_git_checkout(branch)
initialise_qgis_plugin_repo()
fabtools.require.deb.package('make')
fabtools.require.deb.package('gettext')
with cd(env.code_path):
# Get git version and write it to a text file in case we need to cross
# reference it for a user ticket.
sha = run('git rev-parse HEAD > git_revision.txt')
fastprint('Git revision: %s' % sha)
get('metadata.txt', '/tmp/metadata.txt')
metadata_file = file('/tmp/metadata.txt', 'rt')
metadata_text = metadata_file.readlines()
metadata_file.close()
for line in metadata_text:
line = line.rstrip()
if 'version=' in line:
plugin_version = line.replace('version=', '')
if 'status=' in line:
line.replace('status=', '')
run('scripts/release.sh %s' % plugin_version)
package_name = '%s.%s.zip' % ('inasafe', plugin_version)
source = '/tmp/%s' % package_name
fastprint('Source: %s' % source)
run('cp %s %s' % (source, env.plugin_repo_path))
plugins_xml = os.path.join(env.plugin_repo_path, 'plugins.xml')
sed(plugins_xml, '\[VERSION\]', plugin_version)
sed(plugins_xml, '\[FILE_NAME\]', package_name)
sed(plugins_xml, '\[URL\]', 'http://%s/%s' %
(env.repo_site_name, package_name))
sed(plugins_xml, '\[DATE\]', str(datetime.now()))
fastprint('Add http://%s/plugins.xml to QGIS plugin manager to use.'
% env.repo_site_name)
@task
def show_environment():
"""For diagnostics - show any pertinent info about server."""
_all()
fastprint('\n-------------------------------------------------\n')
fastprint('User: %s\n' % env.user)
fastprint('Host: %s\n' % env.hostname)
fastprint('Site Name: %s\n' % env.repo_site_name)
fastprint('Dest Path: %s\n' % env.plugin_repo_path)
fastprint('Home Path: %s\n' % env.home)
fastprint('Repo Path: %s\n' % env.repo_path)
fastprint('Git Url: %s\n' % env.git_url)
fastprint('Repo Alias: %s\n' % env.repo_alias)
fastprint('-------------------------------------------------\n')
@task
def setup_jenkins_jobs():
#fabgis.fabgis.initialise_jenkins_site()
xvfb_config = "org.jenkinsci.plugins.xvfb.XvfbBuildWrapper.xml"
job_dir = ['InaSAFE-master-QGIS1',
'InaSAFE-master-QGIS2',
'InaSAFE-release-QGIS1',
'InaSAFE-release-QGIS2']
with cd('/var/lib/jenkins/'):
if not exists(xvfb_config):
local_dir = os.path.dirname(__file__)
local_file = os.path.abspath(os.path.join(
local_dir,
'scripts',
'jenkins_jobs',
xvfb_config))
put(local_file,
"/var/lib/jenkins/", use_sudo=True)
with cd('/var/lib/jenkins/jobs/'):
for job in job_dir:
if not exists(job):
local_dir = os.path.dirname(__file__)
local_job_file = os.path.abspath(os.path.join(
local_dir,
'scripts',
'jenkins_jobs',
'%s.xml') % job)
sudo('mkdir /var/lib/jenkins/jobs/%s' % job)
put(local_job_file,
"/var/lib/jenkins/jobs/%s/config.xml" % job,
use_sudo=True)
sudo('chown -R jenkins:nogroup InaSAFE*')
sudo('service jenkins restart')