Skip to content

Commit

Permalink
ci: fix --disable/enable-fapi in docker.run
Browse files Browse the repository at this point in the history
It's --with/without-fapi (or --with-fapi=yes/no).

Signed-off-by: Sergii Dmytruk <[email protected]>
  • Loading branch information
SergiiDmytruk committed Mar 28, 2023
1 parent 4fe9ba2 commit fba96cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .ci/docker.run
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ fi
# avoid error checking or cause make distcheck to fail. So run a
# pure check with gcc before adding those flags.
if [[ "$CC" != clang* ]]; then
./configure --enable-esapi-session-manage-flags --disable-fapi --enable-unit --enable-integration
./configure --enable-esapi-session-manage-flags --without-fapi --enable-unit --enable-integration
make distcheck TESTS=
make distclean
fi
Expand All @@ -84,7 +84,7 @@ if [[ "$CC" != clang* ]]; then
# rebuild after running scan-build.
fi

../configure --enable-unit --enable-integration --enable-esapi-session-manage-flags --enable-fapi $config_flags
../configure --enable-unit --enable-integration --enable-esapi-session-manage-flags --with-fapi $config_flags
make -j$(nproc)
make -j check

Expand Down

0 comments on commit fba96cf

Please sign in to comment.