btrfs-progs/ci/images/images-build-all
David Sterba 335116e359 btrfs-progs: ci: update image management scripts
Add new script to upload updated images to my docker hub, add comments
in which order.

Signed-off-by: David Sterba <dsterba@suse.com>
2024-01-26 05:52:33 +01:00

14 lines
271 B
Bash
Executable File

#!/bin/sh
# Rebuild all docker images
# Run after: images-base-update
for dir in ci-*; do
echo "Build $dir"
cd "$dir"
# Do not build images with any stale branch snapshot, scripts ran
# locally will update that as needed
rm devel.tar.gz
./docker-build
cd ..
done