Skip to content
Snippets Groups Projects
Commit c18d32a5 authored by Jonas Höppner's avatar Jonas Höppner
Browse files

CI, release task: Use list created in yocto, don't rename files

Don't rename the release artifacts, just copy to a versioned folder.
The list of files to copy is taken from variables set in yocto
DISTRO_ARTIFACTS and DISTRO_IMAGES.
Images are linked, all other files are copied.

BCS 746-000273
parent 27d9fd30
No related branches found
No related tags found
1 merge request!33CI, release task: Use list created in yocto, don't rename files
Pipeline #8162 passed with stage
in 20 seconds
...@@ -40,25 +40,25 @@ def main(): ...@@ -40,25 +40,25 @@ def main():
# Set directories (use relative path) # Set directories (use relative path)
release_name = "GUF-Yocto-%s" % version release_name = "GUF-Yocto-%s" % version
output_dir = "%s/%s/%s" % (args.release_dir, release_name, machine) output_dir = "%s/%s/%s" % (args.release_dir, release_name, machine)
images_dir = os.path.relpath(args.images_dir, output_dir) images_dir_relative = os.path.relpath(args.images_dir, output_dir)
# Create output directory # Create output directory
os.makedirs(output_dir, exist_ok=True) os.makedirs(output_dir, exist_ok=True)
# Create symlinks for all artifacts # Create symlinks for all images (to reduce size and network load)
for artifact in artifacts_image: for artifact in artifacts_image:
source_file = "%s/%s" % (images_dir, artifact) source_file = "%s/%s" % (images_dir_relative, artifact)
target_file = "%s/%s" % (output_dir, artifact) target_file = "%s/%s" % (output_dir, artifact)
print("%s -> %s" % (target_file, source_file)) print("Create link: %s -> %s" % (target_file, source_file))
os.symlink(source_file, target_file) os.symlink(source_file, target_file)
# Create symlinks for all artifacts # Copy all other artifacts
for artifact in artifacts_all: for artifact in artifacts_all:
if artifact in artifacts_image: if artifact in artifacts_image:
continue continue
source_file = "%s/%s" % (images_dir, artifact) source_file = "%s/%s" % (args.images_dir, artifact)
target_file = "%s/%s" % (output_dir, artifact) target_file = "%s/%s" % (output_dir, artifact)
print("%s -> %s" % (target_file, source_file)) print("Copy: %s -> %s" % (target_file, source_file))
shutil.copyfile(source_file, target_file, follow_symlinks=True) shutil.copyfile(source_file, target_file, follow_symlinks=True)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment