Skip to content

Commit 50adca2

Browse files
committed
workflows: debos: Split UFS and eMMC tarballs
The single flash.tar.gz was getting too large, so separate the single universal tarball into two for now, at least until we improve compression. Signed-off-by: Loïc Minier <[email protected]>
1 parent 34d5ec0 commit 50adca2

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/debos.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,12 +106,15 @@ jobs:
106106
cp -av dtbs.tar.gz "${dir}"
107107
cp -av disk-ufs.img.gz "${dir}"
108108
cp -av disk-sdcard.img.gz "${dir}"
109-
tar -cvf "${dir}"/flash.tar.gz \
109+
# TODO: separate flash_* directories between UFS and eMMC
110+
tar -cvf "${dir}"/flash-ufs.tar.gz \
110111
disk-ufs.img1 \
111112
disk-ufs.img2 \
113+
flash_rb3*
114+
tar -cvf "${dir}"/flash-emmc.tar.gz \
112115
disk-sdcard.img1 \
113116
disk-sdcard.img2 \
114-
flash_*
117+
flash_rb1*
115118
# instruct fileserver to publish this directory
116119
url="${FILESERVER_URL}/${id}/"
117120
curl -X POST -H 'Accept: text/event-stream' "${url}"

0 commit comments

Comments
 (0)