diff --git a/.github/scripts/depexts/generate-actions.sh b/.github/scripts/depexts/generate-actions.sh index 2724f324fd3..d6e79c172ab 100644 --- a/.github/scripts/depexts/generate-actions.sh +++ b/.github/scripts/depexts/generate-actions.sh @@ -184,11 +184,28 @@ if [ $target != "oraclelinux" ] && [ $target != "xxx" ]; then test_depext conf-dpkg.1 # gentoo fi +# package with os-version check + if [ $target = "debian" ] || [ $target = "ubuntu" ]; then - # os version check on debian & ubuntu test_depext conf-sundials.2 + # conf-libgccjit.1 conf-rdkit.1 +fi + +if [ $target = "alpine" ]; then + test_depext conf-clang-format.1 + # conf-pandoc.0.1 +fi + +if [ $target = "fedora" ]; then + test_depext conf-emacs.1 +fi + +if [ $target = "oraclelinux" ] || [ $target = "centos" ]; then + test_depext conf-pkg-config.3 fi +# oraclelinux: conf-libev.4-12 conf-npm.1 +# centos: conf-perl.2 if [ -z "$DEPEXTS2TEST" ]; then echo "ERROR: You should at least define one depext to test" diff --git a/master_changes.md b/master_changes.md index 5546abdbc2e..3f422ff7122 100644 --- a/master_changes.md +++ b/master_changes.md @@ -128,6 +128,7 @@ users) * Depexts: add update depexts check [#6079 @rjbou] * Depexts: move parts to docker build image, for caching [#6079 @rjbou] * Depexts: set version for conf packages to check [#6079 @rjbou] + * Depexts: add package to test containing `os-version` in filter [#6079 @rjbou] ## Doc * Remove the ppa from the installation instructions on Ubuntu [#5988 @kit-ty-kate - fix #5987]