forked from kernelci/kernelci-pipeline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtarball.py
executable file
·164 lines (139 loc) · 5.11 KB
/
tarball.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
#!/usr/bin/env python3
#
# SPDX-License-Identifier: LGPL-2.1-or-later
#
# Copyright (C) 2022 Collabora Limited
# Author: Guillaume Tucker <[email protected]>
# Author: Jeny Sadadia <[email protected]>
from datetime import datetime, timedelta
import logging
import os
import re
import sys
import urllib.parse
import json
import requests
import kernelci
import kernelci.build
import kernelci.config
from kernelci.cli import Args, Command, parse_opts
import kernelci.storage
from base import Service
KVER_RE = re.compile(
r'^v(?P<version>[\d]+)\.'
r'(?P<patchlevel>[\d]+)'
r'(\.(?P<sublevel>[\d]+))?'
r'(?P<extra>.*)?'
)
class Tarball(Service):
def __init__(self, configs, args):
super().__init__(configs, args, 'tarball')
self._build_configs = configs['build_configs']
self._kdir = args.kdir
self._output = args.output
if not os.path.exists(self._output):
os.makedirs(self._output)
self._verbose = args.verbose
self._storage_config = configs['storage_configs'][args.storage_config]
self._storage = kernelci.storage.get_storage(
self._storage_config, args.storage_cred
)
def _find_build_config(self, node):
revision = node['revision']
tree = revision['tree']
branch = revision['branch']
for name, config in self._build_configs.items():
if config.tree.name == tree and config.branch == branch:
return config
def _update_repo(self, config):
self.log.info(f"Updating repo for {config.name}")
kernelci.build.update_repo(config, self._kdir)
self.log.info("Repo updated")
def _make_tarball(self, config, describe):
name = '-'.join(['linux', config.tree.name, config.branch, describe])
tarball = f"{name}.tar.gz"
self.log.info(f"Making tarball {tarball}")
output_path = os.path.relpath(self._output, self._kdir)
cmd = """\
set -e
cd {kdir}
git archive --format=tar --prefix={name}/ HEAD | gzip > {output}/{tarball}
""".format(kdir=self._kdir, name=name, output=output_path, tarball=tarball)
self.log.info(cmd)
kernelci.shell_cmd(cmd)
self.log.info("Tarball created")
return tarball
def _push_tarball(self, config, describe):
tarball_name = self._make_tarball(config, describe)
tarball_path = os.path.join(self._output, tarball_name)
self.log.info(f"Uploading {tarball_path}")
tarball_url = self._storage.upload_single((tarball_path, tarball_name))
self.log.info(f"Upload complete: {tarball_url}")
os.unlink(tarball_path)
return tarball_url
def _get_version_from_describe(self):
describe_v = kernelci.build.git_describe_verbose(self._kdir)
version = KVER_RE.match(describe_v).groupdict()
return {
key: value
for key, value in version.items()
if value
}
def _update_node(self, checkout_node, describe, version, tarball_url):
node = checkout_node.copy()
node['revision'].update({
'describe': describe,
'version': version,
})
node.update({
'state': 'available',
'artifacts': {
'tarball': tarball_url,
},
'holdoff': str(datetime.utcnow() + timedelta(minutes=10))
})
try:
self._api.update_node(node)
except requests.exceptions.HTTPError as err:
err_msg = json.loads(err.response.content).get("detail", [])
self.log.error(err_msg)
def _setup(self, args):
return self._api_helper.subscribe_filters({
'op': 'created',
'name': 'checkout',
'state': 'running',
})
def _stop(self, sub_id):
if sub_id:
self._api_helper.unsubscribe_filters(sub_id)
def _run(self, sub_id):
self.log.info("Listening for new trigger events")
self.log.info("Press Ctrl-C to stop.")
while True:
checkout_node = self._api_helper.receive_event_node(sub_id)
build_config = self._find_build_config(checkout_node)
if build_config is None:
continue
self._update_repo(build_config)
describe = kernelci.build.git_describe(
build_config.tree.name, self._kdir
)
version = self._get_version_from_describe()
tarball_url = self._push_tarball(build_config, describe)
self._update_node(checkout_node, describe, version, tarball_url)
return True
class cmd_run(Command):
help = "Wait for a new revision event and push a source tarball"
args = [
Args.kdir, Args.output, Args.api_config, Args.storage_config,
]
opt_args = [
Args.verbose, Args.storage_cred,
]
def __call__(self, configs, args):
return Tarball(configs, args).run(args)
if __name__ == '__main__':
opts = parse_opts('tarball', globals())
configs = kernelci.config.load('config/pipeline.yaml')
status = opts.command(configs, opts)
sys.exit(0 if status is True else 1)