]> git.ipfire.org Git - thirdparty/suricata.git/commitdiff
github-ci: re-add --disable-lua to commit check 11161/head 11165/head 11170/head
authorJason Ish <jason.ish@oisf.net>
Tue, 28 May 2024 18:20:29 +0000 (12:20 -0600)
committerJason Ish <jason.ish@oisf.net>
Tue, 28 May 2024 18:20:29 +0000 (12:20 -0600)
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

index 6ef42507e3896006b8d437aa52673752a6a99e04..5a5a7b1fd38fa697eeb82c738b4e50e5908849e1 100644 (file)
@@ -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