cache-apt-pkgs-action/install_and_cache_pkgs.sh

44 lines
1,005 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)
2021-10-21 19:41:47 +00:00
echo "::debug::Clean installing $package_count packages..."
2021-10-17 04:45:24 +00:00
for package in $packages; do
2021-10-21 19:41:47 +00:00
echo "::debug::- $package"
2021-10-17 04:45:24 +00:00
done
2021-10-21 19:41:47 +00:00
echo "::endgroup::"
2021-10-17 04:45:24 +00:00
2021-10-14 04:11:27 +00:00
mkdir -p $cache_dir
2021-10-21 19:41:47 +00:00
echo "::group::Update APT Package List"
sudo apt-get update
2021-10-21 19:41:47 +00:00
echo "::endgroup::"
2021-10-14 04:11:27 +00:00
for package in $packages; do
cache_filepath=$cache_dir/$package.tar.gz
2021-10-21 19:41:47 +00:00
echo "::group::Clean install $package"
2021-10-14 04:11:27 +00:00
sudo apt-get --yes install $package
2021-10-21 19:41:47 +00:00
echo "::endgroup::"
2021-10-14 04:11:27 +00:00
2021-10-21 19:41:47 +00:00
echo "::group::Caching $package to $cache_filepath"
2021-10-14 04:11:27 +00:00
# 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-21 19:41:47 +00:00
echo "::endgroup::"
2021-10-16 18:34:14 +00:00
done
2021-10-14 04:11:27 +00:00
2021-10-21 19:41:47 +00:00
echo "::group::Finished"
echo "::debug::$(echo $packages | wc -w) package(s) installed and cached."
echo "::endgroup::"