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'