From b9a479517fc27e70e1b8e5c394798b0cdd04b6be Mon Sep 17 00:00:00 2001 From: ilya-fedin Date: Wed, 15 Dec 2021 18:06:48 +0400 Subject: [PATCH] Yet another attempt to fix Linux action (#272) --- .github/workflows/linux-kotato.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/linux-kotato.yml b/.github/workflows/linux-kotato.yml index 7157651aa..6cad1365f 100644 --- a/.github/workflows/linux-kotato.yml +++ b/.github/workflows/linux-kotato.yml @@ -411,12 +411,12 @@ jobs: git clone -b v5.88.0 --depth=1 $GIT/KDE/kwindowsystem.git cd kwindowsystem - cmake . \ + cmake -B build -GNinja \ -DCMAKE_BUILD_TYPE=Release \ -DBUILD_TESTING=OFF \ -DKDE_INSTALL_LIBDIR=lib - cmake --build . --parallel - cmake --install . + cmake --build build --parallel + cmake --install build ldconfig cd .. rm -rf kwindowsystem @@ -502,7 +502,7 @@ jobs: $DEFINE cmake --build ../out --config Debug --parallel - DESTDIR=../../AppDir cmake --install . + DESTDIR=../../AppDir cmake --install ../out --config Debug - name: AppImage build. if: env.ONLY_CACHE == 'false'