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.
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