From 585d23ae5b25844c49e492eda21338d56ed5141b Mon Sep 17 00:00:00 2001 From: Daniele Forsi IU5HKX Date: Sat, 5 Jul 2025 12:39:38 +0200 Subject: [PATCH] Temporarily disable building Lua bindings on macOS --- .github/workflows/c-cpp.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml index dd4ab5709..562f4bfc9 100644 --- a/.github/workflows/c-cpp.yml +++ b/.github/workflows/c-cpp.yml @@ -81,7 +81,7 @@ jobs: run: ./configure ${{ matrix.configure_args }} --enable-silent-rules - name: configure on macOS if: runner.os == 'macOS' - run: ./configure ${{ matrix.configure_args }} --enable-silent-rules --without-python-binding + run: ./configure ${{ matrix.configure_args }} --enable-silent-rules --without-python-binding --without-lua-binding - name: make run: make -j 4 V=0 --no-print-directory - name: make distcheck