autobuild: Remove more "make install" steps
authorAndrew Bartlett <abartlet@samba.org>
Fri, 11 Sep 2020 01:00:14 +0000 (13:00 +1200)
committerDouglas Bagnall <dbagnall@samba.org>
Thu, 1 Oct 2020 01:18:39 +0000 (01:18 +0000)
Running a "make install" involves a full re-link which takes quite some time
we really only need to test this in a couple of basic combinations, so remove
from a few more targets.

Signed-off-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
script/autobuild.py

index a54d420695881ad6a947936e2ef4f5dfb65f481b..00ac1815334b576293abf879beb7b3558b82543e 100755 (executable)
@@ -341,7 +341,6 @@ tasks = {
             "simpleserver",
             ])),
         ("lcov", LCOV_CMD),
-        ("install", "make install"),
         ("check-clean-tree", "script/clean-source-tree.sh"),
         ("clean", "make clean"),
         ],
@@ -687,7 +686,6 @@ tasks = {
 
         ("configure", "./configure.developer ${ENABLE_COVERAGE} ${PREFIX} --with-profiling-data --disable-python --without-ad-dc"),
         ("make", "make -j"),
-        ("install", "make install"),
         ("find-python", "script/find_python.sh ${PREFIX}"),
         ("test", "make test-nopython"),
         ("lcov", LCOV_CMD),