From b1d84f790cc07c9bd9fd7f768a63884906a10a03 Mon Sep 17 00:00:00 2001 From: Andrey Astafyev Date: Fri, 26 Jun 2020 04:40:10 +0300 Subject: [PATCH] =?UTF-8?q?=D0=92=D0=BE=D0=B7=D0=B2=D1=80=D0=B0=D1=82=20?= =?UTF-8?q?=D0=BA=20=D0=B2=D1=8B=D0=B7=D0=BE=D0=B2=D1=83=20=D1=87=D0=B5?= =?UTF-8?q?=D1=80=D0=B5=D0=B7=20ninja?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scheduled.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/scheduled.yml b/scheduled.yml index ca4857e..3532357 100644 --- a/scheduled.yml +++ b/scheduled.yml @@ -47,17 +47,16 @@ variables: if [ -n "${BUILD_CMD}" ]; then ${BUILD_CMD} else - cmake --parallel --verbose --build . + ninja -v all fi - > if [ -z "${CI_SHARED_ENVIRONMENT+x}" ]; then if [ -n "${PACKAGE_CMD}" ]; then ${PACKAGE_CMD} else - cmake --verbose --install - cpack -G DEB - cpack -G TGZ - cpack --config CPackSourceConfig.cmake + ninja -v install + ninja package + ninja package_source fi fi - echo "${CI_COMMIT_SHA}" > "../${CI_JOB_NAME}.status"