From daa6f6f7f38ba48fe4f1396277fb5ab60da7e464 Mon Sep 17 00:00:00 2001 From: Jason Ish Date: Tue, 28 May 2024 12:20:29 -0600 Subject: [PATCH] github-ci: re-add --disable-lua to commit check This is required for some older versions in the pull request to build as the commits change some compile time options with respect to Lua. --- .github/workflows/commits.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/commits.yml b/.github/workflows/commits.yml index 6ef42507e3..5a5a7b1fd3 100644 --- a/.github/workflows/commits.yml +++ b/.github/workflows/commits.yml @@ -88,7 +88,7 @@ jobs: git checkout $rev echo "Building rev ${rev}" | tee -a build_log.txt ./autogen.sh >> build_log.txt 2>&1 - CC="sccache gcc" ./configure --enable-warnings --enable-unittests >> build_log.txt 2>&1 + CC="sccache gcc" ./configure --enable-warnings --enable-unittests --disable-lua >> build_log.txt 2>&1 if ! make -j2 >> build_log.txt 2>&1; then echo "::error ::Failed to build rev ${rev}" tail -n 50 build_log.txt -- 2.47.2