Trying to get the skip to work
Some checks failed
Gitsokyo/bot-base/pipeline/pr-master There was a failure building this commit

This commit is contained in:
Suwako Moriya 2020-04-26 21:17:28 +02:00
parent b9a2a0eb6d
commit bb20354c19
Signed by: SuwakoMmh
GPG Key ID: A27482B806F13CD5

20
Jenkinsfile vendored
View File

@ -62,16 +62,16 @@ pipeline {
if (buildingTag()) { if (buildingTag()) {
SUB_PATH="${env.TAG_NAME}" SUB_PATH="${env.TAG_NAME}"
} }
} sshagent(credentials: ['1cf72f47-b70c-4f90-a958-020956099d19']) {
sshagent(credentials: ['1cf72f47-b70c-4f90-a958-020956099d19']) { withEnv(["SUB_PATH=${SUB_PATH}"]) {
withEnv(["SUB_PATH=${SUB_PATH}"]) { sh '''cd doc
sh '''cd doc rm -f rsync.log
rm -f rsync.log ssh -o StrictHostKeyChecking=no -o BatchMode=yes ${DEPLOY_HOST} mkdir -p ${DEPLOY_PATH}${SUB_PATH}/
ssh -o StrictHostKeyChecking=no -o BatchMode=yes ${DEPLOY_HOST} mkdir -p ${DEPLOY_PATH}${SUB_PATH}/ rsync -aze 'ssh -o StrictHostKeyChecking=no -o BatchMode=yes' \
rsync -aze 'ssh -o StrictHostKeyChecking=no -o BatchMode=yes' \ --log-file=rsync.log \
--log-file=rsync.log \ --delete \
--delete \ ./build/html/ ${DEPLOY_HOST}:${DEPLOY_PATH}${SUB_PATH}/'''
./build/html/ ${DEPLOY_HOST}:${DEPLOY_PATH}${SUB_PATH}/''' }
} }
} }
} }