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

before_script:
Sintal's avatar
Sintal committed
4
  - echo "Hello, $GITLAB_USER_LOGIN!"
Sintal's avatar
Sintal committed
5
  #- curl ifconfig.me
Sintal's avatar
Sintal committed
6
  #- ip addr show
Sintal's avatar
Sintal committed
7
  #- apt-get install iproute2
Sintal's avatar
Sintal committed
8
  #- apt-file search --regexp 'bin/ip$'
Sintal's avatar
Sintal committed
9
10
  - 'which ssh-agent || ( apt-get update -y && apt-get install openssh-client -y )'
  - eval $(ssh-agent -s)
Sintal's avatar
Sintal committed
11
  #
Sintal's avatar
Sintal committed
12
  #- apt-get install expect -y
Sintal's avatar
Sintal committed
13
14
  #- apt-get install sshpass
  #- sshpass -p $SSH_PASSPHRASE
Sintal's avatar
Sintal committed
15
  #- export SSH_ASKPASS=$SSH_PASSPHRASE
Sintal's avatar
Sintal committed
16
  - echo "$SSH_PRIVATE_KEY" | base64 -d | tr -d '\r' | ssh-add - > /dev/null
Sintal's avatar
Sintal committed
17
18
  #- expect "Enter passphrase for (stdin):"
  #- send $SSH_PASSPHRASE
Sintal's avatar
Sintal committed
19
20
21
22
23
  - 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
24

Muddsair Sharif's avatar
Muddsair Sharif committed
25
26
27

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