diff options
Diffstat (limited to '.gitlab/ci')
-rwxr-xr-x | .gitlab/ci/docker/debian10-aarch64/install_deps.sh | 6 | ||||
-rwxr-xr-x | .gitlab/ci/docker/debian10/install_deps.sh | 6 | ||||
-rwxr-xr-x | .gitlab/ci/docker/fedora34/install_deps.sh | 5 |
3 files changed, 17 insertions, 0 deletions
diff --git a/.gitlab/ci/docker/debian10-aarch64/install_deps.sh b/.gitlab/ci/docker/debian10-aarch64/install_deps.sh index f2ffcd6..d7f4f9c 100755 --- a/.gitlab/ci/docker/debian10-aarch64/install_deps.sh +++ b/.gitlab/ci/docker/debian10-aarch64/install_deps.sh @@ -23,6 +23,12 @@ apt-get install -y \ apt-get install -y \ jq +# Packages needed to test CTest. +apt-get install -y \ + cvs \ + subversion \ + mercurial + # Packages needed to test find modules. apt-get install -y \ alsa-utils \ diff --git a/.gitlab/ci/docker/debian10/install_deps.sh b/.gitlab/ci/docker/debian10/install_deps.sh index 14dc67d..b4d0f86 100755 --- a/.gitlab/ci/docker/debian10/install_deps.sh +++ b/.gitlab/ci/docker/debian10/install_deps.sh @@ -23,6 +23,12 @@ apt-get install -y \ apt-get install -y \ jq +# Packages needed to test CTest. +apt-get install -y \ + cvs \ + subversion \ + mercurial + # Packages needed to test find modules. apt-get install -y \ alsa-utils \ diff --git a/.gitlab/ci/docker/fedora34/install_deps.sh b/.gitlab/ci/docker/fedora34/install_deps.sh index 878b5f8..bef3a97 100755 --- a/.gitlab/ci/docker/fedora34/install_deps.sh +++ b/.gitlab/ci/docker/fedora34/install_deps.sh @@ -36,6 +36,11 @@ dnf install --setopt=install_weak_deps=False -y \ jq \ which +# Packages needed to test CTest. +dnf install --setopt=install_weak_deps=False -y \ + subversion \ + mercurial + # Packages needed to test CPack. dnf install --setopt=install_weak_deps=False -y \ rpm-build |