From: Harald Hoyer Date: Fri, 28 Feb 2020 11:52:03 +0000 (+0100) Subject: fedora-test.sh / fedora-test-github.sh: don't build the documentation X-Git-Tag: 050~27 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=55a974bae699367f56fd78e4f90070da278d5013;p=thirdparty%2Fdracut.git fedora-test.sh / fedora-test-github.sh: don't build the documentation don't build the documentation, if running a test --- diff --git a/fedora-test-github.sh b/fedora-test-github.sh index 01312e2cb..6d5e7e37b 100755 --- a/fedora-test-github.sh +++ b/fedora-test-github.sh @@ -14,11 +14,12 @@ NCPU=$(getconf _NPROCESSORS_ONLN) if ! [[ $TESTS ]]; then make -j$NCPU all syncheck rpm logtee else - make -j$NCPU all logtee + make -j$NCPU enable_documentation=no all logtee cd test time LOGTEE_TIMEOUT_MS=590000 make \ + enable_documentation=no \ KVERSION=$(rpm -qa kernel --qf '%{VERSION}-%{RELEASE}.%{ARCH}\n' | sort -rn | head -1) \ DRACUT_NO_XATTR=1 \ TEST_RUN_ID=$RUN_ID \ diff --git a/fedora-test.sh b/fedora-test.sh index 096ed6c4b..ea3d6770d 100755 --- a/fedora-test.sh +++ b/fedora-test.sh @@ -14,11 +14,12 @@ NCPU=$(getconf _NPROCESSORS_ONLN) if ! [[ $TESTS ]]; then make -j$NCPU all syncheck rpm logtee else - make -j$NCPU all logtee + make -j$NCPU enable_documentation=no all logtee cd test time sudo LOGTEE_TIMEOUT_MS=590000 make \ + enable_documentation=no \ KVERSION=$(rpm -qa kernel --qf '%{VERSION}-%{RELEASE}.%{ARCH}\n' | sort -rn | head -1) \ DRACUT_NO_XATTR=1 \ TEST_RUN_ID=$RUN_ID \