From e248024f3dfe962b39e042cf43be54abb2edbc92 Mon Sep 17 00:00:00 2001 From: Roberto Scolaro Date: Sun, 29 Oct 2023 16:16:07 +0100 Subject: [PATCH] wip Signed-off-by: Roberto Scolaro --- .github/workflows/reusable_build_dev.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/reusable_build_dev.yaml b/.github/workflows/reusable_build_dev.yaml index c5c7e9592d0..cbf14367e31 100644 --- a/.github/workflows/reusable_build_dev.yaml +++ b/.github/workflows/reusable_build_dev.yaml @@ -78,16 +78,16 @@ jobs: cd .. - name: Build - if: matrix.os != 'windows-latest' + if: matrix.os == 'ubuntu-22.04' run: | pushd build KERNELDIR=/lib/modules/$(uname -r)/build make -j4 all popd - name: Build - if: matrix.os == 'windows-latest' + if: matrix.os != 'ubuntu-22.04' run: | - cmake -B build . + cmake -B build --build . - name: Run unit tests if: matrix.os != 'windows-latest'