cache-apt-pkgs-action/install_and_cache_pkgs.sh

34 lines
804 B
Bash
Raw Normal View History

2021-10-14 04:11:27 +00:00
#!/bin/bash
2021-10-17 04:17:55 +00:00
# Fail on any error.
set -e
2021-10-14 04:11:27 +00:00
# Directory that holds the cached packages.
cache_dir=$1
# List of the packages to use.
packages="${@:2}"
2021-10-17 04:45:24 +00:00
package_count=$(echo $packages | wc -w)
echo "* Clean installing $package_count packages..."
for package in $packages; do
echo " - $package"
done
2021-10-14 04:11:27 +00:00
mkdir -p $cache_dir
for package in $packages; do
cache_filepath=$cache_dir/$package.tar.gz
echo "* Clean installing $package... "
sudo apt-get --yes install $package
echo "* Caching $package to $cache_filepath..."
# Pipe all package files (no folders) to Tar.
dpkg -L $package |
while IFS= read -r f; do
if test -f $f; then echo $f; fi;
done |
xargs tar -czf $cache_filepath -C /
2021-10-16 18:34:14 +00:00
done
2021-10-14 04:11:27 +00:00
2021-10-17 04:45:24 +00:00
echo "Action complete. $(echo $packages | wc -w) package(s) installed and cached."