Build amd64/arm64 Debian packages with CGO disabled

That should ensure that the binary is compiled statically
This commit is contained in:
Frédéric Guillot 2024-02-21 21:00:53 -08:00
parent 8602089a1e
commit feb962f98a
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ cd /src
if [ "$PKG_ARCH" = "armhf" ]; then
make miniflux-no-pie
else
make miniflux
CGO_ENABLED=0 make miniflux
fi
mkdir -p /build/debian && \