yum-mirror/StringTools
Rehost of leonetienne's StringTools, a dependency of UwwwuPP.
git clone https://git.yummers.dev/yum-mirror/StringTools
8f589d9
master
1kind : pipeline 2type : kubernetes 3name : cicd-pipeline 4 5steps : 6- name : Build docs 7image : ubuntu 8commands : 9- apt-get update 10- >- 11apt-get 12install 13make 14doxygen 15graphviz 16-y 17- cd "StringTools/doxygen" 18- make 19 20- name : Deploy docs to production 21image : ubuntu 22environment : 23SSH_PRIV : 24from_secret : ssh-priv 25SSH_PUB : 26from_secret : ssh-pub 27KNOWN_HOSTS : 28from_secret : known-hosts # this is just $(ssh-keyscan -p 2222 leonetienne.de) 29commands : 30- apt-get update 31- >- 32apt-get 33install 34openssh-client 35rsync 36-y 37- eval "$(ssh-agent -s)" 38- mkdir -p ~/.ssh 39- echo "$SSH_PRIV" > ~/.ssh/id_ed25519 40- echo "$SSH_PUB" > ~/.ssh/id_ed25519.pub 41- echo "$KNOWN_HOSTS" > ~/.ssh/known_hosts 42- chmod 600 ~/.ssh/id_ed25519 43- chmod 644 ~/.ssh/id_ed25519.pub 44- chmod 644 ~/.ssh/known_hosts 45- ssh-add 46- cd "StringTools/doxygen" 47- >- 48 rsync 49 -avz 50 --recursive 51 --delete 52 --delete-excluded 53 -e 54 "ssh -o IdentitiesOnly=yes -p 2222" 55 ./build/ 56 doxygen-stringtools@leonetienne.de:app 57