Skip to content

Commit

Permalink
curl
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Oct 21, 2024
1 parent 1eedaf5 commit bb451fd
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/distro_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,17 @@ jobs:
run: |
if [ -f /etc/os-release ]; then
. /etc/os-release
if [ "$ID" = "alpine" ]; then
if [ "$ID" = "ubuntu" ] || [ "$ID" = "debian" ] || [ "$ID" = "kalilinux" ] || [ "$ID" = "parrotsec" ]; then
apt-get update
apt-get -y install curl
elif [ "$ID" = "alpine" ]; then
apk add --no-cache bash gcc g++ musl-dev libffi-dev
elif [ "$ID" = "archlinux" ]; then
pacman -Syu --noconfirm curl
elif [ "$ID" = "fedora" ]; then
dnf install -y curl
elif [ "$ID" = "gentoo" ]; then
emerge --update --newuse curl
fi
fi
Expand Down

0 comments on commit bb451fd

Please sign in to comment.