From 25b2d871fec775a5cf6e5e1056f9f2cefdf1c536 Mon Sep 17 00:00:00 2001 From: Olivier Bertrand <olivier.bertrand@uni-bielefeld.de> Date: Thu, 3 May 2018 15:51:32 +0200 Subject: [PATCH] Update .gitlab-ci.yml --- .gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 1b2ebb7..856e515 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -6,9 +6,9 @@ before_script: - python3 -V # Print out python version for debugging stages: + - deploy - build - test - - deploy navipy_install: @@ -32,8 +32,8 @@ doc_build: stage: deploy before_script: - 'which ssh-agent || ( apt-get update -y && apt-get install openssh-client -y )' - - 'which sshpass || apt-get install sshpass' - - 'which rsync || apt-get install rsync' + - 'which sshpass || apt-get install sshpass -y' + - 'which rsync || apt-get install rsync -y' - mkdir -p ~/.ssh - eval $(ssh-agent -s) - '[[ -f /.dockerenv ]] && echo -e "Host *ntStrictHostKeyChecking nonn" > ~/.ssh/config' -- GitLab