[education/rkward] /: Ninja prints warnings to stdout without -j option, so revert to make
Thomas Friedrichsmeier
null at kde.org
Sun Sep 21 20:45:24 BST 2025
Git commit 66711d1c623fa5e5d0bca450fa7ebc61d0b28d3e by Thomas Friedrichsmeier.
Committed on 21/09/2025 at 19:36.
Pushed by tfry into branch 'master'.
Ninja prints warnings to stdout without -j option, so revert to make
M +4 -4 .gitlab-ci.yml
https://invent.kde.org/education/rkward/-/commit/66711d1c623fa5e5d0bca450fa7ebc61d0b28d3e
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 9eaa95bda..df753e198 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -48,15 +48,15 @@ build_clazy_stable:
before_script:
- apt-get update
- apt-get install --yes eatmydata
- - eatmydata apt-get install --yes --no-install-recommends clazy clang ninja-build
+ - eatmydata apt-get install --yes --no-install-recommends clazy clang
# rkward build deps:
- eatmydata apt-get install --yes --no-install-recommends cmake extra-cmake-modules qt6-webengine-dev libkf6notifications-dev gettext libkf6coreaddons-dev libkf6crash-dev libkf6guiaddons-dev libkf6i18n-dev libkf6iconthemes-dev libkf6breezeicons-dev libkf6texteditor-dev libkf6textwidgets-dev libkf6windowsystem-dev libkf6xmlgui-dev r-base-dev
script:
- export LC_ALL=C.UTF-8
- mkdir -p build && cd build
- - cmake -G Ninja ..
- - ninja kdsingleapplication # build first, to ignore all (not just clazy) warnings, in 3rdparty code
- - CLAZY_IGNORE_DIRS="3rdparty" ninja > >(tee make.output) 2> >(tee make.error)
+ - cmake ..
+ - make -j 9 kdsingleapplication # build first, to ignore all (not just clazy) warnings, in 3rdparty code
+ - CLAZY_IGNORE_DIRS="3rdparty" make -j 9 > >(tee make.output) 2> >(tee make.error)
artifacts:
paths:
- build/make.output
More information about the rkward-tracker
mailing list