e768098d0e
Flake8 Lint / flake8 (push) Waiting to run
Spell check CI / Spell_Check (push) Waiting to run
tools_continuous_delivery / Private PyPI non-main branch release (push) Has been skipped
tools_continuous_delivery / Private PyPI main branch release (push) Failing after 2m42s
Publish Promptflow Doc / Build (push) Has been cancelled
Publish Promptflow Doc / Deploy (push) Has been cancelled
53 lines
1.1 KiB
Python
53 lines
1.1 KiB
Python
# ---------------------------------------------------------
|
|
# Copyright (c) Microsoft Corporation. All rights reserved.
|
|
# ---------------------------------------------------------
|
|
|
|
import contextlib
|
|
import os
|
|
import platform
|
|
import subprocess
|
|
import sys
|
|
from pathlib import Path
|
|
|
|
REPO_ROOT_DIR = Path(__file__).parent.parent.parent
|
|
|
|
|
|
class Color:
|
|
BLUE = "\033[94m"
|
|
YELLOW = "\033[93m"
|
|
END = "\033[0m"
|
|
|
|
|
|
def print_blue(msg: str) -> None:
|
|
print(Color.BLUE + msg + Color.END)
|
|
|
|
|
|
def print_yellow(msg: str) -> None:
|
|
print(Color.YELLOW + msg + Color.END)
|
|
|
|
|
|
@contextlib.contextmanager
|
|
def change_cwd(path):
|
|
cwd = os.getcwd()
|
|
try:
|
|
os.chdir(path)
|
|
yield
|
|
finally:
|
|
os.chdir(cwd)
|
|
|
|
|
|
def run_cmd(cmd, verbose: bool = False) -> None:
|
|
print_blue(f"Running {' '.join(cmd)}")
|
|
shell = platform.system() == "Windows"
|
|
p = subprocess.Popen(
|
|
cmd,
|
|
stdout=subprocess.PIPE,
|
|
stderr=subprocess.STDOUT,
|
|
shell=shell,
|
|
)
|
|
for line in p.stdout:
|
|
line = line.decode("utf-8").rstrip()
|
|
if verbose:
|
|
sys.stdout.write(f"{line}\n")
|
|
p.communicate()
|