Travis-ci: specify KCONFIG_ALLCONFIG for randconfig
authorWei Liu <wei.liu2@citrix.com>
Mon, 5 Dec 2016 16:45:36 +0000 (16:45 +0000)
committerWei Liu <wei.liu2@citrix.com>
Tue, 6 Dec 2016 09:54:38 +0000 (09:54 +0000)
The file provided contains symbols that must be set to certain values.
This then prevents random build breakage in travis due to
known-incompatible symbol selections.

Signed-off-by: Wei Liu <wei.liu2@citrix.com>
Reviewed-by: Andrew Cooper <andrew.cooper3@citrix.com>
Reviewed-by: Doug Goldstein <cardoe@cardoe.com>
scripts/travis-build

index 584d008e41b02de8182944f2bfb9717267f1b22e..0cb15a89e4ee970ec269b9f9276e3388ce4bb34c 100755 (executable)
@@ -4,7 +4,7 @@ $CC --version
 
 # random config or default config
 if [[ "${RANDCONFIG}" == "y" ]]; then
-    make -C xen randconfig
+    make -C xen KCONFIG_ALLCONFIG=tools/kconfig/allrandom.config randconfig
 else
     make -C xen defconfig
 fi