From 081df6cd2c0b3bcc863f2da4b0a1d1bb219d3f26 Mon Sep 17 00:00:00 2001 From: Thilo Fromm Date: Tue, 22 Feb 2022 15:44:04 +0100 Subject: [PATCH] ci-automtion/packages.sh: fix torcx URL, add manifest Signed-off-by: Thilo Fromm --- ci-automation/packages.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/ci-automation/packages.sh b/ci-automation/packages.sh index 5e6a7fce15..adad0e0b70 100644 --- a/ci-automation/packages.sh +++ b/ci-automation/packages.sh @@ -121,9 +121,11 @@ function packages_build() { # generate image + push to build cache docker_commit_to_buildcache "${packages_container}" "${packages_image}" "${docker_vernum}" - # Publish torcx manifest to "images" cache so tests can pull it later. + # Publish torcx manifest and docker tarball to "images" cache so tests can pull it later. copy_to_buildcache "images/${arch}/${vernum}/torcx" \ - __build__/torcx_tmp/pkgs/${arch}-usr/docker/*/*.torcx.tgz + "${torcx_tmp}/torcx/amd64-usr/latest/torcx_manifest.json" + copy_to_buildcache "images/${arch}/${vernum}/torcx" \ + "${torcx_tmp}/torcx/pkgs/${arch}-usr/docker/"*/*.torcx.tgz update_and_push_version "${version}" }