From bcddb060941e7bc6cc9d527abc7e5f72dcb1cdd8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Helleu?= Date: Tue, 16 Mar 2021 20:57:22 +0100 Subject: [PATCH] core: do not force build of JavaScript plugin in CI --- tools/build-test.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/build-test.sh b/tools/build-test.sh index 3e7d052e0..fd6a4f87b 100755 --- a/tools/build-test.sh +++ b/tools/build-test.sh @@ -67,7 +67,7 @@ run "cd $BUILDDIR" if [ "$BUILDTOOL" = "cmake" ]; then # build with CMake - run "cmake .. -DENABLE_JAVASCRIPT=ON -DENABLE_MAN=ON -DENABLE_DOC=ON -DENABLE_TESTS=ON ${BUILDARGS}" + run "cmake .. -DENABLE_MAN=ON -DENABLE_DOC=ON -DENABLE_TESTS=ON ${BUILDARGS}" run "make VERBOSE=1 -j$(nproc)" run "sudo make install" run "ctest -V" @@ -76,7 +76,7 @@ fi if [ "$BUILDTOOL" = "autotools" ]; then # build with autotools run "../autogen.sh" - run "../configure --enable-javascript --enable-man --enable-doc --enable-tests ${BUILDARGS}" + run "../configure --enable-man --enable-doc --enable-tests ${BUILDARGS}" run "make -j$(nproc)" run "sudo make install" run "./tests/tests -v"