aboutsummaryrefslogblamecommitdiffstatshomepage
path: root/project/ci/github/boost.py
blob: 5fd1e48eefeec15a62599ae179b98e8e37aad000 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
















                                                               
# 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.

from project.ci.boost import build_ci
from project.ci.dirs import GitHub
from project.utils import setup_logging


def main(argv=None):
    with setup_logging():
        build_ci(GitHub(), argv)


if __name__ == '__main__':
    main()