# HG changeset patch
# User Georges Racinet <georges.racinet@octobus.net>
# Date 1578745579 -3600
#      Sat Jan 11 13:26:19 2020 +0100
# Node ID 3525e06b2bf2593d79be6cd8a3cfc248d98c3226
# Parent  5f9122431e18f80edfc2b174712ea97f1c913975
ci: fixing the build by installing dependency gone missing

This is the same as what's been done earlier for heptapod/hg-git:
`/usr/bin/ssh` is no longer installed with `git-core` because the
base image skips install of `Recommends` dependencies.

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -2,7 +2,8 @@
   PYTHONPATH: /ci/repos/mercurial
 
 before_script:
-  - apt-get update && apt-get -y install git-core subversion subversion-tools
+  - apt-get update
+  - apt-get -y install git-core subversion subversion-tools openssh-client
   - PYTHONPATH= pip install --user dulwich==0.19.13
 
 tests-hg-default: