From 7d6a15d63abe8bc5bb001f7dbd88fc96bac8065c Mon Sep 17 00:00:00 2001 From: Andrey Astafyev Date: Wed, 30 Jun 2021 16:20:00 +0300 Subject: [PATCH] =?UTF-8?q?=D0=92=D1=8B=D0=B7=D0=BE=D0=B2=20=D1=81=D1=82?= =?UTF-8?q?=D0=B0=D0=B4=D0=B8=D0=B9=20=D1=81=D0=B1=D0=BE=D1=80=D0=BA=D0=B8?= =?UTF-8?q?=20=D0=BF=D1=80=D0=BE=D0=B5=D0=BA=D1=82=D0=B0=20=D0=BF=D1=80?= =?UTF-8?q?=D0=BE=D0=B3=D1=80=D0=B0=D0=BC=D0=BC=D0=BE=D0=B9=20cmake?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scheduled.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/scheduled.yml b/scheduled.yml index 22e1a18..ca5cce4 100644 --- a/scheduled.yml +++ b/scheduled.yml @@ -47,16 +47,16 @@ variables: if [ -n "${BUILD_CMD}" ]; then ${BUILD_CMD} else - ninja -v all + cmake --build . fi - > if [ -z "${CI_SHARED_ENVIRONMENT+x}" ]; then if [ -n "${PACKAGE_CMD}" ]; then ${PACKAGE_CMD} else - ninja -v install - ninja package - ninja package_source + cmake --install . + cmake --build . --target package + cmake --build . --target package_source fi fi - echo "${CI_COMMIT_SHA}" > "../${CI_JOB_NAME}.status" @@ -104,6 +104,6 @@ variables: mkdir build cd build cmake -G Ninja .. - ninja check-format-sources + cmake --build . --target check-format-sources fi