Logging level to INFO
[deliverable/lttng-ivc.git] / lttng_ivc / build_projects.py
CommitLineData
3ac73e85
JR
1# Copyright (c) 2017 Jonathan Rajotte-Julien <jonathan.rajotte-julien@efficios.com>
2#
3# Permission is hereby granted, free of charge, to any person obtaining a copy
4# of this software and associated documentation files (the "Software"), to deal
5# in the Software without restriction, including without limitation the rights
6# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7# copies of the Software, and to permit persons to whom the Software is
8# furnished to do so, subject to the following conditions:
9#
10# The above copyright notice and this permission notice shall be included in all
11# copies or substantial portions of the Software.
12#
13# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19# SOFTWARE.
20
21import os
22import sys
23import yaml
24import logging
25
26dir_path = os.path.dirname(os.path.realpath(__file__))
27sys.path.insert(0, os.path.join(dir_path, ".."))
28
29import utils.ProjectFactory as ProjectFactory
30import settings as Settings
31
577f3f1d 32logging.basicConfig(level=logging.INFO)
3ac73e85
JR
33_logger = logging.getLogger('project.cache_builder')
34
35with open(Settings.run_configuration_file, 'r') as stream:
36 markers = yaml.load(stream)
37
38# Prebuild all projects
39for key in markers:
40 _logger.info('Preparing and building {}'.format(key))
41 ProjectFactory.get_precook(key)
577f3f1d 42 _logger.info('Done: {}'.format(key))
This page took 0.02521 seconds and 5 git commands to generate.