From 1921dd840c774c565c80a144839751c41d3d3038 Mon Sep 17 00:00:00 2001 From: Jan Caron <j.caron@fz-juelich.de> Date: Tue, 11 Jul 2017 13:12:31 +0200 Subject: [PATCH] First try to get jutil deploy key to work. --- .gitlab-ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a324e07..0c9481f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -3,6 +3,9 @@ image: "python:3.5" before_script: - python --version - pip install hyperspy tqdm cmocean nose + - eval $(ssh-agent -s) # Run ssh-agent + - ssh-add <(echo "$SSH_KEY_JUTIL") # Add SSH key for jutil to the agent store + - echo "Done" stages: - test -- GitLab