1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/grist_ynh.git synced 2024-09-03 20:36:18 +02:00

enable bookworm tests

This commit is contained in:
Thomas 2024-05-11 08:21:24 +02:00 committed by GitHub
parent 40421eba52
commit 09883d0c87
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -80,7 +80,13 @@ ram.runtime = "150M"
main.default = 8484
[resources.apt]
packages = "python3.9, python3.9-venv"
packages_from_raw_bash = """
if [[ $YNH_DEBIAN_VERSION == "bullseye" ]]; then
echo "python3.9, python3.9-venv";
elif [[ $YNH_DEBIAN_VERSION == "bookworm" ]]; then
echo "python3.11, python3.11-venv";
fi
"""
extras.yarn.repo = "deb https://dl.yarnpkg.com/debian/ stable main"
extras.yarn.key = "https://dl.yarnpkg.com/debian/pubkey.gpg"