.gitlab-ci.yml 473 Bytes
Newer Older
Sintal's avatar
Sintal committed
1
2
3
4
5
6
7
8
9
10
11
image: ubuntu

before_script:
  - echo "Hello, $GITLAB_USER_LOGIN!"
  - 'which ssh-agent || ( apt-get update -y && apt-get install openssh-client -y )'
  - eval $(ssh-agent -s)
  - echo "$SSH_PRIVATE_KEY" | base64 -d | tr -d '\r' | ssh-add - > /dev/null
  - mkdir -p ~/.ssh
  - chmod 700 ~/.ssh
  - ssh-keyscan bwunicluster.scc.kit.edu > ~/.ssh/known_hosts
  - chmod 644 ~/.ssh/known_hosts
Sintal's avatar
Sintal committed
12
  
Sintal's avatar
Sintal committed
13
14
15
Test SSH:
    script:
      - ssh $USER_NAME "./scriptPull/pullTransformers.sh"