From 3ece4a087b0d8f319b1ddbefcc257363c40969e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20=C5=A0tancl?= Date: Sat, 4 Jan 2025 14:22:40 +0100 Subject: [PATCH] ci: use make -B --- .github/workflows/extensions.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/extensions.yml b/.github/workflows/extensions.yml index 03880c2e..ec97f615 100644 --- a/.github/workflows/extensions.yml +++ b/.github/workflows/extensions.yml @@ -48,11 +48,11 @@ jobs: - name: Build C files (Native Windows) if: runner.os == 'Windows' - run: cd extensions && make + run: cd extensions && make -B - name: Build C files (Native Linux) if: runner.os == 'Linux' && matrix.arch == 'x64' - run: cd extensions && make + run: cd extensions && make -B - name: Build C files (Linux cross-compilation) if: runner.os == 'Linux' && matrix.arch == 'ARM64' @@ -65,7 +65,7 @@ jobs: - name: Build C files (Native macOS ARM64) if: matrix.os == 'macos-latest' && matrix.arch == 'ARM64' - run: cd extensions && make + run: cd extensions && make -B - name: Build C files (macOS cross-compilation) if: matrix.os == 'macos-latest' && matrix.arch == 'x64' @@ -75,7 +75,7 @@ jobs: export CC=/opt/homebrew/opt/llvm/bin/clang export CFLAGS="-target x86_64-apple-darwin" export LDFLAGS="-target x86_64-apple-darwin" - make ARCH=x86_64 + make -B ARCH=x86_64 - name: Commit output files shell: bash