You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.1 KiB
38 lines
1.1 KiB
pipeline { |
|
agent any |
|
|
|
stages { |
|
stage('Deploy Main branch') { |
|
when { |
|
branch 'main' |
|
} |
|
steps { |
|
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 "$(date): main branch" >> ~/test |
|
EOF |
|
''' |
|
} |
|
} |
|
} |
|
stage('Deploy Testing branch') { |
|
when { |
|
branch 'testing' |
|
} |
|
steps { |
|
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 "$(date): testing branch" >> ~/test |
|
EOF |
|
''' |
|
} |
|
} |
|
} |
|
} |
|
} |