We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b50953 commit 4fb3a49Copy full SHA for 4fb3a49
2 files changed
build/scripts/container-build.sh
@@ -124,6 +124,7 @@ if [[ "$1" == "kernel" ]]; then
124
rc=$?
125
if [[ $rc -eq 0 ]]; then
126
tar -cjf /output/modules.tar.bz2 -C $mod_path lib
127
+ tar -czf /output/modules.tar.gz -C $mod_path lib
128
fi
129
else
130
echo "## Modules not configured"
build/scripts/prune.sh
@@ -27,7 +27,7 @@ case "$task" in
27
mkdir -p "artifacts"
28
for path in .config vmlinux System.map arch/powerpc/boot/zImage include/config/kernel.release \
29
arch/powerpc/kernel/asm-offsets.s arch/powerpc/boot/uImage modules.tar.bz2 \
30
- sparse.log log.txt
+ modules.tar.gz sparse.log log.txt
31
do
32
if [[ -e "$path" ]]; then
33
mv "$path" artifacts/
0 commit comments