Skip to content

Commit

Permalink
github-ci: re-add --disable-lua to commit check
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
jasonish committed May 28, 2024
1 parent 3eb8c72 commit daa6f6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/commits.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit daa6f6f

Please sign in to comment.