From 55a974bae699367f56fd78e4f90070da278d5013 Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Fri, 28 Feb 2020 12:52:03 +0100 Subject: [PATCH] fedora-test.sh / fedora-test-github.sh: don't build the documentation don't build the documentation, if running a test --- fedora-test-github.sh | 3 ++- fedora-test.sh | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/fedora-test-github.sh b/fedora-test-github.sh index 01312e2c..6d5e7e37 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 096ed6c4..ea3d6770 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 \