1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
|
#!/bin/sh
set -e
cd /tmp/liquidsoap-full/liquidsoap
APK_VERSION=$(opam show -f version ./opam/liquidsoap.opam | cut -d'-' -f 1)
COMMIT_SHORT=$(echo "${GITHUB_SHA}" | cut -c-7)
export LIQUIDSOAP_BUILD_TARGET=posix
export ABUILD_APK_INDEX_OPTS="--allow-untrusted"
if [ -n "${IS_ROLLING_RELEASE}" ]; then
APK_PACKAGE="liquidsoap-${COMMIT_SHORT}-${ALPINE_TAG}-${ALPINE_ARCH}"
elif [ -n "${IS_RELEASE}" ]; then
APK_PACKAGE="liquidsoap-${ALPINE_TAG}-${ALPINE_ARCH}"
else
ALPINE_BRANCH=$(echo "${BRANCH}" | tr '[:upper:]' '[:lower:]' | sed -e 's#[^0-9^a-z^A-Z^.^-]#-#g')
APK_PACKAGE="liquidsoap-${ALPINE_BRANCH}-${ALPINE_TAG}-${ALPINE_ARCH}"
fi
echo "::group:: build ${APK_PACKAGE}.."
cd /tmp/liquidsoap-full
sed -e "s#@APK_PACKAGE@#${APK_PACKAGE}#" liquidsoap/.github/alpine/APKBUILD.in |
sed -e "s#@APK_VERSION@#${APK_VERSION}#" |
sed -e "s#@APK_RELEASE@#${APK_RELEASE}#" \
> APKBUILD
cp "liquidsoap/.github/alpine/liquidsoap.post-install" "${APK_PACKAGE}.post-install"
abuild-keygen -a -n
abuild
mv /home/opam/packages/tmp/"${ALPINE_ARCH}"/*.apk "${LIQ_TMP_DIR}"
echo "::endgroup::"
if [ "${ARCH}" = "amd64" ]; then
echo "::group:: save build config for ${APK_PACKAGE}.."
eval "$(opam config env)"
OCAMLPATH=$(cat .ocamlpath)
export OCAMLPATH
cd liquidsoap && ./liquidsoap --build-config > "${LIQ_TMP_DIR}/${APK_PACKAGE}-${APK_VERSION}-r${APK_RELEASE}.config"
echo "::endgroup::"
fi
rm -rf APKBUILD /home/opam/packages/tmp/"${ALPINE_ARCH}"
echo "::group:: building ${APK_PACKAGE}-minimal.."
# shellcheck disable=SC2086
opam remove -y --assume-depexts $MINIMAL_EXCLUDE_DEPS
eval "$(opam config env)"
cd /tmp/liquidsoap-full
make clean
cp PACKAGES.minimal-build PACKAGES
cd liquidsoap
./.github/scripts/build-posix.sh 1
cd /tmp/liquidsoap-full
OCAMLPATH=$(cat .ocamlpath)
export OCAMLPATH
sed -e "s#@APK_PACKAGE@#${APK_PACKAGE}-minimal#" liquidsoap/.github/alpine/APKBUILD-minimal.in |
sed -e "s#@APK_VERSION@#${APK_VERSION}#" |
sed -e "s#@APK_RELEASE@#${APK_RELEASE}#" \
> APKBUILD
cp "liquidsoap/.github/alpine/liquidsoap.post-install" "${APK_PACKAGE}-minimal.post-install"
abuild-keygen -a -n
abuild
mv /home/opam/packages/tmp/"${ALPINE_ARCH}"/*.apk "${LIQ_TMP_DIR}"
echo "::endgroup::"
if [ "${ARCH}" = "amd64" ]; then
echo "::group:: save build config for ${APK_PACKAGE}-minimal.."
cd liquidsoap && ./liquidsoap --build-config > "${LIQ_TMP_DIR}/${APK_PACKAGE}-minimal-${APK_VERSION}-r${APK_RELEASE}.config"
fi
echo "::endgroup::"
{
echo "basename=${APK_PACKAGE}-${APK_VERSION}-r${APK_RELEASE}.apk"
echo "basename-minimal=${APK_PACKAGE}-minimal-${APK_VERSION}-r${APK_RELEASE}.apk"
} >> "${GITHUB_OUTPUT}"
|