GCrypt/.drone.yml
Leon Etienne b53be19dda
Some checks failed
continuous-integration/drone/push Build is failing
Update '.drone.yml'
2022-10-25 20:19:22 +00:00

22 lines
521 B
YAML

kind: pipeline
type: kubernetes
name: cicd-pipeline
steps:
- name: all-tmp
image: ubuntu
environment:
SSH_PRIV:
from_secret: ssh-priv
SSH_PUB:
from_secret: ssh-pub
commands:
# - cd "GCryptLib/doxygen"
- apt-get update
- apt-get install openssh-client
- eval "$(ssh-agent -s)"
- mkdir -p ~/.ssh
- echo $SSH_PRIV > ~/.ssh/id_ed25519
- echo $SSH_PUB > ~/.ssh/id_ed25519.pub
- ssh-add ~/.ssh/id_ed25519