2022-02-16 21:32:32 +00:00
|
|
|
pipeline {
|
|
|
|
agent any
|
|
|
|
|
|
|
|
stages {
|
|
|
|
stage('Do nothing') {
|
|
|
|
steps {
|
|
|
|
sh '/bin/true'
|
2022-02-17 01:43:46 +00:00
|
|
|
sshagent(credentials: ['baltimore-wiki']) {
|
|
|
|
sh '''
|
|
|
|
[ -d ~/.ssh ] || mkdir ~/.ssh && chmod 0700 ~/.ssh
|
|
|
|
ssh-keyscan -t rsa,dsa baltimore-wiki.lxd >> ~/.ssh/known_hosts
|
|
|
|
ssh mdbook@baltimore-wiki.lxd << EOF
|
|
|
|
echo "testing" >> ~/test
|
|
|
|
EOF'''
|
|
|
|
}
|
2022-02-16 21:32:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|