summaryrefslogtreecommitdiff
path: root/icklib/step_create_tarball.py
blob: f60ecb78f7e1eac1f206e118454027eea706f5ec (plain)
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
# Copyright 2016  Lars Wirzenius
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
#
# =*= License: GPL-3+ =*=


import icklib


class CreateCITarball(icklib.BuildStep):

    def build(self):
        if not self.run_state.build_using_debian_ci:
            return

        self.run_state.progress['step'] = 'Creating CI tarball'
        self.run_state.logger.important('Creating CI tarball')
        with self.run_state.logger:
            tarball_target = self.targets[0]
            remote_tmp = tarball_target.mkdtemp()

            remote_git_dir = tarball_target.sync_to_target(
                self.run_state.clones[0].dirname, remote_tmp, 'git')
            remote_artifacts_dir = tarball_target.sync_to_target(
                self.run_state.build_info.create_artifacts_directory(),
                remote_tmp, 'artifacts')

            cleanly_path = self.project.copy_cleanly_to_target(
                tarball_target, remote_tmp)
            self.project.run_cleanly(
                tarball_target, remote_git_dir, cleanly_path,
                ['--results', remote_artifacts_dir,
                 '--ci',
                 '--buildno', str(self.run_state.build_info.build_number),
                 '--debian-release', tarball_target.debian_release,
                 '--debian-codename', tarball_target.debian_codename,
                 'tarball'])

            tarball_target.sync_from_target(
                remote_artifacts_dir,
                self.run_state.build_info.create_artifacts_directory())

            tarball_target.remove_all([remote_tmp])


class CreateReleaseTarballs(icklib.BuildStep):

    def build(self):
        target = self.targets[0]
        for tag in sorted(self.run_state.build_tags_using_debian_release):
            self.run_state.progress['step'] = (
                'Create release tarball for {}'.format(tag))
            self.run_state.logger.important(
                'Creating release tarball for tag {tag}',
                tag=tag)
            with self.run_state.logger:
                remote_tmp = target.mkdtemp()
                self.run_state.clones[0].checkout(tag)
                remote_git_dir = target.sync_to_target(
                    self.run_state.clones[0].dirname, remote_tmp, 'git')
                remote_artifacts_dir = target.sync_to_target(
                    self.run_state.build_info.create_artifacts_directory(),
                    remote_tmp, 'artifacts')

                cleanly_path = self.project.copy_cleanly_to_target(
                    target, remote_tmp)
                self.project.run_cleanly(
                    target, remote_git_dir, cleanly_path,
                    ['--results', remote_artifacts_dir,
                     '--release',
                     '--buildno', str(self.run_state.build_info.build_number),
                     '--debian-release', target.debian_release,
                     '--debian-codename', target.debian_codename,
                     'tarball'])

                target.sync_from_target(
                    remote_artifacts_dir,
                    self.run_state.build_info.create_artifacts_directory())

                target.remove_all([remote_tmp])