aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2020-01-07 01:11:41 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2020-01-07 01:14:41 +0300
commit1fb4e9a02097f2fd22ae5f00a0e4cda62c702eb4 (patch)
tree5d1f69a5e57c39df8ee61ccdd1ee8671a5820142
parentTravis: change Boost versions (diff)
downloadcmake-common-1fb4e9a02097f2fd22ae5f00a0e4cda62c702eb4.tar.gz
cmake-common-1fb4e9a02097f2fd22ae5f00a0e4cda62c702eb4.zip
AppVeyor: add some tests for boost/build
-rw-r--r--.travis.yml3
-rw-r--r--appveyor.yml18
-rw-r--r--boost/build/ci/appveyor.py100
3 files changed, 120 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 6591a52..e662879 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -10,8 +10,9 @@ addons:
script:
- ./boost/build/build.py download 1.58.0
- - ./boost/build/build.py build --configuration Debug --platform x86 -- ./boost_1_58_0 --with-filesystem --with-program_options
- ./boost/build/build.py download --cache . 1.72.0
+
+ - ./boost/build/build.py build --configuration Debug --platform x86 -- ./boost_1_58_0 --with-filesystem --with-program_options
- ./boost/build/build.py build --configuration Debug Release --platform x86 x64 -- ./boost_1_72_0 link=static --with-filesystem --with-program_options
- travis_boost_version=1.65.0 configuration=Release platform=x64 ./boost/build/ci/travis.py -- --with-filesystem --with-program_options
diff --git a/appveyor.yml b/appveyor.yml
new file mode 100644
index 0000000..0ed25e7
--- /dev/null
+++ b/appveyor.yml
@@ -0,0 +1,18 @@
+version: '{build}'
+
+image:
+ - Visual Studio 2015
+ - Visual Studio 2017
+ - Visual Studio 2019
+
+environment:
+ python_exe: C:\Python36-x64\python.exe
+
+build_script:
+ - '"%python_exe%" ./boost/build/build.py download 1.58.0'
+ - '"%python_exe%" ./boost/build/build.py download --cache . 1.72.0'
+
+ - '"%python_exe%" ./boost/build/build.py build --configuration Debug --platform x86 -- ./boost_1_58_0 --with-filesystem --with-program_options'
+ - '"%python_exe%" ./boost/build/build.py build --configuration Debug Release --platform x86 x64 -- ./boost_1_72_0 link=static --with-filesystem --with-program_options'
+
+ - cmd: set appveyor_boost_version=1.65.0 && set CONFIGURATION=Release && set PLATFORM=x64 && "%python_exe%" ./boost/build/ci/appveyor.py -- --with-filesystem --with-program_options
diff --git a/boost/build/ci/appveyor.py b/boost/build/ci/appveyor.py
new file mode 100644
index 0000000..b79bb04
--- /dev/null
+++ b/boost/build/ci/appveyor.py
@@ -0,0 +1,100 @@
+#!/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.
+
+# 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:\.
+
+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_appveyor():
+ if 'APPVEYOR' not in os.environ:
+ raise RuntimeError('not running on AppVeyor')
+
+
+def _get_build_dir():
+ return R'(C:\)'
+
+
+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()
+ 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()
+
+ 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(),
+ '--', version.dir_path(_get_build_dir()),
+ ]
+ build_main(travis_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()