aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/boost/build/ci/travis.py
blob: 1c65cc9f7fb29ff2b15cd4731895bac7a767c6a1 (plain) (blame)
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
#!/usr/bin/env python3

# Copyright (c) 2019 Egor Tensin <Egor.Tensin@gmail.com>
# This file is part of the "cmake-common" project.
# For details, see https://github.com/egor-tensin/cmake-common.
# Distributed under the MIT License.

# This is similar to build.py, but auto-fills some parameters for build.py from
# the Travis-defined environment variables.
# Boost is built in $HOME.

import argparse
import logging
import os
import sys


def _env(name):
    if name not in os.environ:
        raise RuntimeError(f'undefined environment variable: {name}')
    return os.environ[name]


def _check_travis():
    if 'TRAVIS' not in os.environ:
        raise RuntimeError('not running on Travis')


def _get_build_dir():
    return _env('HOME')


def _get_boost_version():
    return _env('travis_boost_version')


def _get_configuration():
    return _env('configuration')


def _get_platform():
    return _env('platform')


def _setup_logging():
    logging.basicConfig(
        format='%(asctime)s | %(levelname)s | %(message)s',
        level=logging.INFO)


def _parse_args(argv=None):
    if argv is None:
        argv = sys.argv[1:]
    logging.info('Command line arguments: %s', argv)

    parser = argparse.ArgumentParser()
    parser.add_argument('--link', metavar='LINKAGE', nargs='*',
                        help='how the libraries are linked (i.e. static/shared)')
    parser.add_argument('--runtime-link', metavar='LINKAGE',
                        help='how the libraries link to the runtime')
    parser.add_argument('b2_args', nargs='*', metavar='B2_ARG', default=[],
                        help='additional b2 arguments, to be passed verbatim')
    return parser.parse_args(argv)


def build_travis(argv=None):
    args = _parse_args(argv)
    _check_travis()

    this_module_dir = os.path.dirname(os.path.abspath(__file__))
    parent_module_dir = os.path.dirname(this_module_dir)
    sys.path.insert(1, parent_module_dir)
    from build import BoostVersion, main as build_main

    version = BoostVersion.from_string(_get_boost_version())
    travis_argv = [
        'download',
        '--unpack', _get_build_dir(),
        '--', str(version)
    ]
    build_main(travis_argv)

    travis_argv = [
        'build',
        '--configuration', _get_configuration(),
        '--platform', _get_platform(),
    ]
    if args.link is not None:
        travis_argv.append('--link')
        travis_argv += args.link
    if args.runtime_link is not None:
        appveyor_argv += ['--runtime-link', args.runtime_link]
    travis_argv += [
        '--', version.dir_path(_get_build_dir()),
    ]
    build_main(travis_argv + args.b2_args)


def main(argv=None):
    _setup_logging()
    try:
        build_travis(argv)
    except Exception as e:
        logging.exception(e)
        raise


if __name__ == '__main__':
    main()