From e733ed08e8455eadb96919a486d890c8cb4b7cc9 Mon Sep 17 00:00:00 2001 From: Chris Lowis Date: Tue, 13 Nov 2018 21:55:17 +0000 Subject: [PATCH] Install rsync on CI --- .gitlab-ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f2bff6c..33c62a8 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -5,6 +5,7 @@ variables: LC_ALL: C.UTF-8 before_script: + - 'which rsync || ( apt-get update -y && apt-get install rsync -y )' - 'which ssh-agent || ( apt-get update -y && apt-get install openssh-client -y )' - eval $(ssh-agent -s) - echo "$SSH_PRIVATE_KEY" | tr -d '\r' | ssh-add - > /dev/null