Skip to content

Commit

Permalink
add alpine
Browse files Browse the repository at this point in the history
  • Loading branch information
ericLemanissier committed Sep 3, 2024
1 parent b472d48 commit 0184310
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/cron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,9 @@ jobs:
archlinux*)
pacman -Syu --noconfirm python-pipx python-platformdirs gcc pkgconf gcc make;;
fedora*)
dnf -y install python3 python3-wheel pipx pkgconf-pkg-config gcc-c++ make;;
dnf -y install python3 python3-wheel pipx pkgconf g++ make;;
alpine*)
apk add python3 py3-wheel pipx pkgconf g++ make;;
esac
- name: Checkout CCI
Expand Down
1 change: 1 addition & 0 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ async def _add_package(package: str, repo: str, ref: str, pr: str = "0") -> None
"archlinux",
"fedora",
"quay.io/centos/centos:stream9",
"alpine:3.20",
]:
config = copy.deepcopy(p)
config['distro'] = distro
Expand Down

0 comments on commit 0184310

Please sign in to comment.