2021-10-13 21:11:27 -07:00
|
|
|
#!/bin/bash
|
|
|
|
|
2021-10-16 21:17:55 -07:00
|
|
|
# Fail on any error.
|
|
|
|
set -e
|
|
|
|
|
2021-10-13 21:11:27 -07:00
|
|
|
# Directory that holds the cached packages.
|
|
|
|
cache_dir=$1
|
|
|
|
# Root directory to untar the cached packages to.
|
|
|
|
# Typically filesystem root '/' but can be changed for testing.
|
|
|
|
cache_restore_root=$2
|
2021-10-16 21:45:24 -07:00
|
|
|
# List of the packages to use.
|
|
|
|
packages="${@:3}"
|
2021-10-13 21:11:27 -07:00
|
|
|
|
2021-10-16 21:23:27 -07:00
|
|
|
cache_filenames=$(ls -1 $cache_dir | sort)
|
2021-10-16 21:45:24 -07:00
|
|
|
cache_filename_count=$(echo $cache_filenames | wc -w)
|
2021-10-21 12:41:47 -07:00
|
|
|
|
|
|
|
echo "::group::Found $cache_filename_count files in cache."
|
2021-10-16 21:23:27 -07:00
|
|
|
for cache_filename in $cache_filenames; do
|
2021-10-21 12:41:47 -07:00
|
|
|
echo "::debug::$cache_filename"
|
2021-10-16 21:45:24 -07:00
|
|
|
done
|
2021-10-21 12:41:47 -07:00
|
|
|
echo "::endgroup::"
|
2021-10-16 21:45:24 -07:00
|
|
|
|
2021-10-21 12:41:47 -07:00
|
|
|
echo "::group::Package Restore"
|
2021-10-16 21:45:24 -07:00
|
|
|
for package in $packages; do
|
|
|
|
cache_filepath=$cache_dir/$package.tar.gz
|
2021-10-21 12:41:47 -07:00
|
|
|
echo "::debug::Restoring package $package ($cache_filepath) from cache... "
|
2021-10-16 21:45:24 -07:00
|
|
|
sudo tar -xf $cache_filepath -C $cache_restore_root
|
2021-10-16 11:34:14 -07:00
|
|
|
done
|
2021-10-21 12:41:47 -07:00
|
|
|
echo "::endgroup::"
|
2021-10-13 21:11:27 -07:00
|
|
|
|
2021-10-21 12:41:47 -07:00
|
|
|
echo "::group::Finished"
|
|
|
|
echo "::debug::Action complete. $cache_filename_count package(s) restored."
|
|
|
|
echo "::endgroup::"
|