.gitlab-ci.yml 634 Bytes
Newer Older
Muddsair Sharif's avatar
Muddsair Sharif committed
1
2
3
image: ubuntu

before_script:
Sintal's avatar
Sintal committed
4
5
6
  - echo "Hello, $GITLAB_USER_LOGIN!"
  - 'which ssh-agent || ( apt-get update -y && apt-get install openssh-client -y )'
  - eval $(ssh-agent -s)
Sintal's avatar
Sintal committed
7
  - apt-get install expect -y
Sintal's avatar
Sintal committed
8
9
  #- apt-get install sshpass
  #- sshpass -p $SSH_PASSPHRASE
Sintal's avatar
Sintal committed
10
  - spawn echo "$SSH_PRIVATE_KEY" | base64 -d | tr -d '\r' | ssh-add - > /dev/null
Sintal's avatar
Sintal committed
11
12
  - expect "Enter passphrase for (stdin):"
  - send $SSH_PASSPHRASE
Sintal's avatar
Sintal committed
13
14
15
16
17
  - mkdir -p ~/.ssh
  - chmod 700 ~/.ssh
  - ssh-keyscan bwunicluster.scc.kit.edu > ~/.ssh/known_hosts
  - chmod 644 ~/.ssh/known_hosts
  - ssh $USER_NAME "pwd"
Sintal's avatar
Sintal committed
18

Muddsair Sharif's avatar
Muddsair Sharif committed
19
20
21

Test SSH:
    script:
Sintal's avatar
Sintal committed
22
      - echo "test from fork"