From: Jason Ish Date: Tue, 28 May 2024 18:20:29 +0000 (-0600) Subject: github-ci: re-add --disable-lua to commit check X-Git-Tag: suricata-8.0.0-beta1~1247 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F11161%2Fhead;p=thirdparty%2Fsuricata.git 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. --- 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