blob: a766f90f09a0e387a23b6fc4d6fd3cf189f4b8fd (
plain) (
tree)
|
|
# 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.
from contextlib import contextmanager
import logging
import os.path
import platform
import subprocess
def normalize_path(s):
return os.path.abspath(os.path.normpath(s))
@contextmanager
def setup_logging():
logging.basicConfig(
format='%(asctime)s | %(levelname)s | %(message)s',
datefmt='%Y-%m-%d %H:%M:%S',
level=logging.INFO)
try:
yield
except Exception as e:
logging.exception(e)
raise
@contextmanager
def cd(path):
cwd = os.getcwd()
os.chdir(path)
try:
yield
finally:
os.chdir(cwd)
def run(cmd_line):
logging.info('Running executable: %s', cmd_line)
return subprocess.run(cmd_line, check=True)
def on_windows():
return platform.system() == 'Windows'
def on_linux():
return not on_windows()
|