Skip to content
Snippets Groups Projects
Commit 8b72490b authored by Ludovico de Nittis's avatar Ludovico de Nittis
Browse files

populate-depot: Include SDK debug and runtime tarballs


In this way we are able to include them when we launch the
"steamrt/container-runtime" Jenkins job.

Signed-off-by: default avatarLudovico de Nittis <ludovico.denittis@collabora.com>
parent 29d783ad
No related branches found
No related tags found
1 merge request!13populate-depot: Include SDK debug and runtime tarballs
Pipeline #3716 passed with warnings
......@@ -96,6 +96,16 @@ class Runtime:
self.architecture,
self.suite,
)
self.debug_tarball = '{}-{}-{}-debug.tar.gz'.format(
self.sdk,
self.architecture,
self.suite,
)
self.runtime_sdk_tarball = '{}-{}-{}-runtime.tar.gz'.format(
self.sdk,
self.architecture,
self.suite,
)
self.build_id_file = '{}-{}-{}-buildid.txt'.format(
self.platform,
self.architecture,
......@@ -112,6 +122,8 @@ class Runtime:
if self.include_sdk:
self.runtime_files.append(self.sysroot_tarball)
self.runtime_files.append(self.dockerfile)
self.runtime_files.append(self.debug_tarball)
self.runtime_files.append(self.runtime_sdk_tarball)
def __str__(self) -> str:
return self.name
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment