From b1f67eef400560a594c2378d228c2b3d34e1c94c Mon Sep 17 00:00:00 2001 From: Sakimotor Date: Mon, 3 Mar 2025 12:10:29 +0100 Subject: [PATCH] Update cmake-multi-platform.yml --- .github/workflows/cmake-multi-platform.yml | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/.github/workflows/cmake-multi-platform.yml b/.github/workflows/cmake-multi-platform.yml index e2e0951..1856ba5 100644 --- a/.github/workflows/cmake-multi-platform.yml +++ b/.github/workflows/cmake-multi-platform.yml @@ -58,24 +58,19 @@ jobs: -S . shell: powershell - - name: Build (Linux) - if: runner.os == 'Linux' - run: cmake --build build --config ${{ matrix.build_type }} - shell: bash + - name: Build + run: ninja + - - name: Build (Windows) - if: runner.os == 'Windows' - run: cmake --build build --config ${{ matrix.build_type }} - shell: powershell - name: Show Build Directory (Linux) if: runner.os == 'Linux' - run: tree -L 3 build + run: tree -L 3 . shell: bash - name: Show Build Directory (Windows) if: runner.os == 'Windows' - run: Get-ChildItem -Path build -Recurse + run: Get-ChildItem -Path . -Recurse shell: powershell