Mesa (master): ci: Remove kernel module build that slipped in

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Tue Aug 4 11:39:14 UTC 2020


Module: Mesa
Branch: master
Commit: a133f7d2885d4717b9af41396ed09d9ceba3aaf3
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=a133f7d2885d4717b9af41396ed09d9ceba3aaf3

Author: Tomeu Vizoso <tomeu.vizoso at collabora.com>
Date:   Tue Aug  4 11:00:54 2020 +0200

ci: Remove kernel module build that slipped in

Some changes unintendedly slipped into an unrelated commit before it was
merged.

This caused kernel modules to be built and installed in the ramdisk,
which caused some devices to fail to boot due to the ramdisk size limit
being surpassed.

These changes weren't in effect until a subsequent commit triggered a
rebuild of the ramdisks.

Signed-off-by: Tomeu Vizoso <tomeu.vizoso at collabora.com>
Acked-by: Daniel Stone <daniels at collabora.com>
Fixes: a9560939e07a ("ci: Build-test Panfrost tools")
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6167>

---

 .gitlab-ci.yml                     | 2 +-
 .gitlab-ci/container/lava_build.sh | 5 +----
 .gitlab-ci/lava-gitlab-ci.yml      | 2 +-
 3 files changed, 3 insertions(+), 6 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index d9f44f08357..e260420c5c7 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -355,7 +355,7 @@ arm64_test:
   extends:
     - .use-arm_test-base
   variables:
-    FDO_DISTRIBUTION_TAG: &arm64_test "2020-07-31-minio"
+    FDO_DISTRIBUTION_TAG: &arm64_test "2020-08-04-ramdisk-fix"
 
 .use-arm64_test:
   variables:
diff --git a/.gitlab-ci/container/lava_build.sh b/.gitlab-ci/container/lava_build.sh
index f55b9a5e227..7a7e997a31c 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} modules
+make ${KERNEL_IMAGE_NAME}
 for image in ${KERNEL_IMAGE_NAME}; do
     cp arch/${KERNEL_ARCH}/boot/${image} /lava-files/.
 done
@@ -145,9 +145,6 @@ 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 \
diff --git a/.gitlab-ci/lava-gitlab-ci.yml b/.gitlab-ci/lava-gitlab-ci.yml
index dd6b4810508..99c1bd43553 100644
--- a/.gitlab-ci/lava-gitlab-ci.yml
+++ b/.gitlab-ci/lava-gitlab-ci.yml
@@ -1,5 +1,5 @@
 variables:
-  DISTRIBUTION_TAG: "2020-07-31-ntp-2"
+  DISTRIBUTION_TAG: "2020-08-04-ramdisk-fix"
 
 .kernel+rootfs:
   stage: container-2



More information about the mesa-commit mailing list