fix: Pipeline fixes for temporary lvgl directory
continuous-integration/drone/push Build is passing

- Fixed missing lvgl artefacts for build pipeline causing drone failures.
This commit is contained in:
2026-02-28 16:48:41 +00:00
parent e54b34aa93
commit 201cda4c29
2 changed files with 5 additions and 5 deletions
+4 -3
View File
@@ -107,9 +107,10 @@ fi
# Copy source + objects to /lvgl host mount for debugging
echo "Copying LVGL source and objects to host mount..."
rm -rf /lvgl/* /lvgl/.[!.]* /lvgl/..?* 2>/dev/null || true
cp -a "$LVGL_DIR/src" /lvgl/src
cp -a "$OBJ_DIR" /lvgl/obj
mkdir /code/lvgl 2>/dev/null || true
rm -rf /code/lvgl/* /code/lvgl/.[!.]* /code/lvgl/..?* 2>/dev/null || true
cp -a "$LVGL_DIR/src" /code/lvgl/src
cp -a "$OBJ_DIR" /code/lvgl/obj
echo "Done."
echo " "
+1 -2
View File
@@ -2,5 +2,4 @@ services:
builder:
build: .
volumes:
- .:/code
- ./lvgl:/lvgl
- .:/code