Skip to content

Commit c852560

Browse files
Add debugging for image loading
Signed-off-by: Jacob Weinstock <jakobweinstock@gmail.com>
1 parent 8186fc0 commit c852560

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/build-all-matrix.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -197,9 +197,9 @@ jobs:
197197
imgs=$(ls "${{ runner.temp }}" | grep tar.gz | xargs)
198198
echo "Found hook images: ${imgs}"
199199
for img in ${imgs}; do
200-
echo "extracting and loading image: ${img}"
201-
gunzip -d "${img}"
202-
docker load --input "${img%.*}"
200+
echo "extracting and loading image: ${{ runner.temp }}/${img}"
201+
gunzip -d "${{ runner.temp }}/${img}"
202+
docker load --input "${{ runner.temp }}/${img%.*}"
203203
done
204204
docker images
205205
@@ -213,11 +213,11 @@ jobs:
213213
run: |
214214
ls "${{ runner.temp }}"
215215
imgs=$(ls "${{ runner.temp }}" | grep tar.gz | xargs)
216-
echo "Found kernel images: ${imgs}"
216+
echo "Found kernel images: ${{ runner.temp }}/${imgs}"
217217
for img in ${imgs}; do
218-
echo "extracting and loading image: ${img}"
219-
gunzip -d "${img}"
220-
docker load --input "${img%.*}"
218+
echo "extracting and loading image: ${{ runner.temp }}/${img}"
219+
gunzip -d "${{ runner.temp }}/${img}"
220+
docker load --input "${{ runner.temp }}/${img%.*}"
221221
done
222222
docker images
223223

0 commit comments

Comments
 (0)