chore: fix ci

This commit is contained in:
2026-02-12 16:01:46 +00:00
parent 73a14218a8
commit e143580993
2 changed files with 11 additions and 0 deletions

View File

@@ -9,6 +9,7 @@
[[ "$DOTS_PKG" != "apt" ]] && { log_warn "Skipping: Not using apt"; return 0; } [[ "$DOTS_PKG" != "apt" ]] && { log_warn "Skipping: Not using apt"; return 0; }
apt_packages=( apt_packages=(
build-essential
ca-certificates ca-certificates
curl curl
gnupg gnupg

View File

@@ -11,6 +11,7 @@
pacman_packages=( pacman_packages=(
ca-certificates ca-certificates
curl curl
git
gnupg gnupg
wget wget
base-devel base-devel
@@ -21,4 +22,13 @@ sudo pacman -S --noconfirm --needed "${pacman_packages[@]}"
unset pacman_packages unset pacman_packages
# Install yay (AUR helper)
if ! command -v yay &>/dev/null; then
log_info "Installing yay..."
git clone https://aur.archlinux.org/yay.git /tmp/yay
(cd /tmp/yay && makepkg -si --noconfirm)
rm -rf /tmp/yay
fi
pacman --version pacman --version
yay --version