aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/ci/build.py
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2019-12-14 03:22:39 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2019-12-14 13:18:05 +0300
commitd63e0dc8bd9c09b724c3bab8b95df55fd457c9fd (patch)
treedd2299143448b7fa148415f41cbf021f2159ac39 /ci/build.py
parentboost/build.py: get rid of --with LIB (diff)
downloadcmake-common-d63e0dc8bd9c09b724c3bab8b95df55fd457c9fd.tar.gz
cmake-common-d63e0dc8bd9c09b724c3bab8b95df55fd457c9fd.zip
fix PyLint warnings
Diffstat (limited to '')
-rwxr-xr-xci/build.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/ci/build.py b/ci/build.py
index dd88156..0fb4478 100755
--- a/ci/build.py
+++ b/ci/build.py
@@ -11,7 +11,6 @@
# similar, but written in bash and PowerShell, respectively).
import argparse
-from contextlib import contextmanager
import logging
from enum import Enum
import os
@@ -39,8 +38,7 @@ def _remove_dir(path):
def _run_executable(cmd_line):
logging.info('Running executable: %s', cmd_line)
- result = subprocess.run(cmd_line)
- result.check_returncode()
+ return subprocess.run(cmd_line, check=True)
def _run_cmake(cmake_args):
@@ -108,7 +106,7 @@ class GenerationPhase:
if args.boost_librarydir is not None:
result.append(f'-DBOOST_LIBRARYDIR={args.boost_librarydir}')
if args.cmake_args is not None:
- result += [arg for arg in args.cmake_args]
+ result += args.cmake_args
result += [f'-B{build_dir.path}']
result += [f'-H{args.src_dir}']
return result