aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/project/ci/appveyor/boost.py
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2020-03-28 17:19:43 +0000
committerEgor Tensin <Egor.Tensin@gmail.com>2020-03-28 17:23:15 +0000
commit70da99e4f70845da37ae368c4788ecc18546792d (patch)
tree51f50290e2ea926350c88fa5fa0e8d4d2ad426fa /project/ci/appveyor/boost.py
parentcommon.cmake: account for ALIAS targets (diff)
downloadcmake-common-70da99e4f70845da37ae368c4788ecc18546792d.tar.gz
cmake-common-70da99e4f70845da37ae368c4788ecc18546792d.zip
WIP: restructure
A stupid attempt to reduce code duplication led me to believe that all the scripts could use _a bit_ of refactoring. This is going to be a major pain (factoring out all the things), which I'll take gladly. All the links and usage examples are broken right now, but nobody cares, so whatevs.
Diffstat (limited to 'project/ci/appveyor/boost.py')
-rw-r--r--project/ci/appveyor/boost.py121
1 files changed, 121 insertions, 0 deletions
diff --git a/project/ci/appveyor/boost.py b/project/ci/appveyor/boost.py
new file mode 100644
index 0000000..4218dd6
--- /dev/null
+++ b/project/ci/appveyor/boost.py
@@ -0,0 +1,121 @@
+#!/usr/bin/env python3
+
+# Copyright (c) 2020 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.
+
+'''Download & build Boost on AppVeyor.
+
+This is similar to build.py, but auto-fills some parameters for build.py from
+the AppVeyor-defined environment variables. This script is rarely usefull,
+since AppVeyor images come with lots of pre-built Boost distributions, but
+still.
+
+Boost is built in C:\projects\boost.
+'''
+
+import argparse
+import logging
+import os
+import os.path
+import sys
+
+from project.boost.build import BoostVersion, main as build_main
+
+
+def _env(name):
+ if name not in os.environ:
+ raise RuntimeError(f'undefined environment variable: {name}')
+ return os.environ[name]
+
+
+def _check_appveyor():
+ if 'APPVEYOR' not in os.environ:
+ raise RuntimeError('not running on AppVeyor')
+
+
+def _get_build_dir():
+ return 'C:\\projects'
+
+
+def _get_boost_dir():
+ return os.path.join(_get_build_dir(), 'boost')
+
+
+def _get_boost_version():
+ return _env('appveyor_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(
+ description=__doc__,
+ formatter_class=argparse.RawDescriptionHelpFormatter)
+ 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_appveyor(argv=None):
+ args = _parse_args(argv)
+ _check_appveyor()
+
+ version = BoostVersion.from_string(_get_boost_version())
+ appveyor_argv = [
+ 'download',
+ '--unpack', _get_build_dir(),
+ '--', str(version)
+ ]
+ build_main(appveyor_argv)
+
+ unpacked_boost_dir = version.dir_path(_get_build_dir())
+ boost_dir = _get_boost_dir()
+ os.rename(unpacked_boost_dir, boost_dir)
+
+ appveyor_argv = [
+ 'build',
+ '--configuration', _get_configuration(),
+ '--platform', _get_platform(),
+ ]
+ if args.link is not None:
+ appveyor_argv.append('--link')
+ appveyor_argv += args.link
+ if args.runtime_link is not None:
+ appveyor_argv += ['--runtime-link', args.runtime_link]
+ appveyor_argv += ['--', boost_dir]
+ build_main(appveyor_argv + args.b2_args)
+
+
+def main(argv=None):
+ _setup_logging()
+ try:
+ build_appveyor(argv)
+ except Exception as e:
+ logging.exception(e)
+ raise
+
+
+if __name__ == '__main__':
+ main()