jenkins/ramdisk: updated pipeline with removal of the rootfs tar.gz

the tar.gz is no replaced with the cpio.gz package, i.e. the cpio.gz
package is included in the deployed package

Signed-off-by: Marc Mattmueller <marc.mattmueller@netmodule.com>
This commit is contained in:
Marc Mattmueller 2021-08-03 12:23:35 +02:00
parent 1999738798
commit 8f59810e3d
1 changed files with 1 additions and 1 deletions

View File

@ -144,6 +144,6 @@ def createArchive(imgType, outputDir) {
""" """
sh "cp ${env.YOCTO_DEPLOYS}/fitImage-${image_basename}-${params.MACHINE} fitImage-${image_basename}" sh "cp ${env.YOCTO_DEPLOYS}/fitImage-${image_basename}-${params.MACHINE} fitImage-${image_basename}"
sh "cp ${basename_built}.tar.gz ${basename_archive}.tar.gz" sh "cp ${basename_built}.cpio.gz ${basename_archive}.cpio.gz"
} }
} }