Kaynağa Gözat

Unbuffered mode for Python subprocesses

default_compile_flags
vector-of-bool 5 yıl önce
ebeveyn
işleme
5a28d4560c
1 değiştirilmiş dosya ile 6 ekleme ve 4 silme
  1. +6
    -4
      tools/ci.py

+ 6
- 4
tools/ci.py Dosyayı Görüntüle

@@ -20,7 +20,8 @@ def _do_bootstrap(opts: CIOptions) -> None:
print('Running bootstrap')
subprocess.check_call([
sys.executable,
TOOLS_DIR / 'bootstrap.py',
'-u',
str(TOOLS_DIR / 'bootstrap.py'),
f'--cxx={opts.cxx}',
])

@@ -51,7 +52,7 @@ def main(argv: Sequence[str]) -> int:
_do_bootstrap(opts)

subprocess.check_call([
PREBUILT_DDS,
str(PREBUILT_DDS),
'deps',
'build',
f'-T{opts.toolchain}',
@@ -59,7 +60,7 @@ def main(argv: Sequence[str]) -> int:
])

subprocess.check_call([
PREBUILT_DDS,
str(PREBUILT_DDS),
'build',
'--full',
f'-T{opts.toolchain}',
@@ -67,7 +68,8 @@ def main(argv: Sequence[str]) -> int:

subprocess.check_call([
sys.executable,
TOOLS_DIR / 'test.py',
'-u',
str(TOOLS_DIR / 'test.py'),
f'--exe={PROJECT_ROOT / "_build/dds"}',
f'-T{opts.toolchain}',
])

Yükleniyor…
İptal
Kaydet