.gitlab-ci.yml 986 Bytes
Newer Older
Sintal's avatar
Sintal committed
1
2
image: ubuntu

Sintal's avatar
Sintal committed
3
4
5
6
7
8
9
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
Naundorf's avatar
Naundorf committed
10
11
  # - ssh-keyscan bwunicluster.scc.kit.edu > ~/.ssh/known_hosts
  - echo "$SSH_KNOWN_HOSTS" > ~/.ssh/known_hosts
Sintal's avatar
Sintal committed
12
  - chmod 644 ~/.ssh/known_hosts
Sintal's avatar
Sintal committed
13

Sintal's avatar
Sintal committed
14
15
Test SSH:
    script:
Naundorf's avatar
Naundorf committed
16
      - GITLAB_KEY=$(echo "$GITLAB_KEY" | tr -d '\r' | tr -d '\n')
Naundorf's avatar
Naundorf committed
17
18
      - ssh -J ubuntu@193.196.52.77 $USER_NAME "mkdir -p execute_vehicle_classification"
      - scp -o "Proxyjump ubuntu@193.196.52.77" execute_vehicle_classification.sh $USER_NAME:~/execute_vehicle_classification/execute_vehicle_classification.sh
Naundorf's avatar
Naundorf committed
19
      - ssh -J ubuntu@193.196.52.77 $USER_NAME "chmod 700 execute_vehicle_classification/execute_vehicle_classification.sh && ./execute_vehicle_classification/execute_vehicle_classification.sh $GITLAB_KEY"