summaryrefslogtreecommitdiff
path: root/.gitlab-ci
diff options
context:
space:
mode:
authorTomeu Vizoso <tomeu.vizoso@collabora.com>2020-08-03 16:19:38 +0200
committerTomeu Vizoso <tomeu.vizoso@collabora.com>2020-08-03 17:43:51 +0200
commita9560939e07a9b15c0e655dc2c4f9b38190b6293 (patch)
treedc6f52a458e4b711cc25add186f93ed3071b52d2 /.gitlab-ci
parentcd1c21f8e5bfa1d682ef4123a3418fe64adb9f83 (diff)
ci: Build-test Panfrost tools
Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/3348 Signed-off-by: Tomeu Vizoso <tomeu.vizoso@collabora.com> Reviewed-by: Alyssa Rosenzweig <alyssa@rosenzweig.io> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6157>
Diffstat (limited to '.gitlab-ci')
-rw-r--r--.gitlab-ci/arm64.config1
-rwxr-xr-x.gitlab-ci/container/lava_build.sh5
2 files changed, 4 insertions, 2 deletions
diff --git a/.gitlab-ci/arm64.config b/.gitlab-ci/arm64.config
index 42aad36ef17..23f766541e5 100644
--- a/.gitlab-ci/arm64.config
+++ b/.gitlab-ci/arm64.config
@@ -115,7 +115,6 @@ CONFIG_DETECT_HUNG_TASK=y
CONFIG_FW_LOADER_COMPRESS=y
CONFIG_FW_LOADER_USER_HELPER=n
-CONFIG_SUNRPC_DEBUG=y
CONFIG_USB_USBNET=y
CONFIG_NETDEVICES=y
diff --git a/.gitlab-ci/container/lava_build.sh b/.gitlab-ci/container/lava_build.sh
index 7a7e997a31c..f55b9a5e227 100755
--- a/.gitlab-ci/container/lava_build.sh
+++ b/.gitlab-ci/container/lava_build.sh
@@ -136,7 +136,7 @@ mkdir -p kernel
wget -qO- ${KERNEL_URL} | tar -xz --strip-components=1 -C kernel
pushd kernel
./scripts/kconfig/merge_config.sh ${DEFCONFIG} ../.gitlab-ci/${KERNEL_ARCH}.config
-make ${KERNEL_IMAGE_NAME}
+make ${KERNEL_IMAGE_NAME} modules
for image in ${KERNEL_IMAGE_NAME}; do
cp arch/${KERNEL_ARCH}/boot/${image} /lava-files/.
done
@@ -145,6 +145,9 @@ if [[ -n ${DEVICE_TREES} ]]; then
cp ${DEVICE_TREES} /lava-files/.
fi
+make -j12 modules
+INSTALL_MOD_PATH=/lava-files/rootfs-${DEBIAN_ARCH}/ make modules_install
+
if [[ ${DEBIAN_ARCH} = "arm64" ]] && which mkimage > /dev/null; then
make Image.lzma
mkimage \