summaryrefslogtreecommitdiffstats
path: root/.drone.yml
blob: 3555c030cf4ca3cf67ecc2453e5b2e2704707e70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
kind: pipeline
type: kubernetes
name: cicd-pipeline

steps:
  - name: Build docs
    image: ubuntu
    commands:
        - apt-get update
        - >-
          apt-get
          install
          make
          doxygen
          graphviz
          -y
        - cd "StringTools/doxygen"
        - make
       
  - name: Deploy docs to production
    image: ubuntu
    environment:
      SSH_PRIV:
        from_secret: ssh-priv
      SSH_PUB:
        from_secret: ssh-pub
      KNOWN_HOSTS:
        from_secret: known-hosts # this is just $(ssh-keyscan -p 2222 leonetienne.de)
    commands:
      - apt-get update
      - >-
        apt-get
        install
        openssh-client
        rsync
        -y
      - eval "$(ssh-agent -s)"
      - mkdir -p ~/.ssh
      - echo "$SSH_PRIV" > ~/.ssh/id_ed25519
      - echo "$SSH_PUB" > ~/.ssh/id_ed25519.pub
      - echo "$KNOWN_HOSTS" > ~/.ssh/known_hosts
      - chmod 600 ~/.ssh/id_ed25519
      - chmod 644 ~/.ssh/id_ed25519.pub
      - chmod 644 ~/.ssh/known_hosts
      - ssh-add
      - cd "StringTools/doxygen"
      - >-
        rsync
        -avz
        --recursive
        --delete
        --delete-excluded
        -e
        "ssh -o IdentitiesOnly=yes -p 2222"
        ./build/
        doxygen-stringtools@leonetienne.de:app