Skip to content

Commit b84c7ff

Browse files
committed
fix(ci): Don't hardcode list of boards in debos
The flash debos recipe creates flash-ufs and flash-emmc files, use these to select the artifacts to include in the UFS and eMMC tarballs. Signed-off-by: Loïc Minier <[email protected]>
1 parent 28e463b commit b84c7ff

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

.github/workflows/debos.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -132,17 +132,15 @@ jobs:
132132
cp -av dtbs.tar.gz "${dir}"
133133
cp -av disk-ufs.img.gz "${dir}"
134134
cp -av disk-sdcard.img.gz "${dir}"
135-
# TODO: separate flash_* directories between UFS and eMMC
135+
# create tarballs with support for all UFS and all eMMC boards
136136
tar -cvf "${dir}"/flash-ufs.tar.gz \
137137
disk-ufs.img1 \
138138
disk-ufs.img2 \
139-
flash_qcs6490-* \
140-
flash_qcs8300-* \
141-
flash_qcs9100-*
139+
$(dirname flash_*/flash-ufs)
142140
tar -cvf "${dir}"/flash-emmc.tar.gz \
143141
disk-sdcard.img1 \
144142
disk-sdcard.img2 \
145-
flash_qrb2210-*
143+
$(dirname flash_*/flash-emmc)
146144
147145
- name: Upload private artifacts
148146
uses: qualcomm-linux/upload-private-artifact-action@v1

0 commit comments

Comments
 (0)