We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d0aff5 commit ce416c1Copy full SHA for ce416c1
.github/workflows/build.yaml
@@ -19,6 +19,7 @@ jobs:
19
- amazonlinux:latest
20
- fedora:latest
21
- oraclelinux:9
22
+ - alpine:latest
23
- archlinux:latest
24
- clearlinux:latest
25
config:
@@ -51,6 +52,11 @@ jobs:
51
52
PACKAGES_API="libmicrohttpd-devel"
53
[[ "${{ matrix.config.cmake_args }}" =~ clang|gcc ]] || PACKAGES="$PACKAGES gcc"
54
;;
55
+ alpine:*)
56
+ INSTALL_CMD="apk add --no-cache"
57
+ PACKAGES="git build-base cmake argp-standalone curl-dev jansson-dev libsodium-dev"
58
+ PACKAGES_API="libmicrohttpd-dev"
59
+ ;;
60
archlinux:*)
61
INSTALL_CMD="pacman -Syu --noconfirm"
62
PACKAGES="git base-devel cmake curl jansson libsodium"
0 commit comments