From 47d13ac4d04b1941f5954c33284062b8953ba18d Mon Sep 17 00:00:00 2001 From: Josh Cummings Date: Fri, 31 May 2019 11:34:40 -0600 Subject: [PATCH] Temporarily remove docs and schema deployments Issue: gh-6929 --- Jenkinsfile | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index c51793f98b..eebfb81241 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -141,30 +141,6 @@ try { } } } - }, - docs: { - stage('Deploy Docs') { - node { - checkout scm - withCredentials([file(credentialsId: 'docs.spring.io-jenkins_private_ssh_key', variable: 'DEPLOY_SSH_KEY')]) { - withEnv(["JAVA_HOME=${ tool 'jdk8' }"]) { - sh "./gradlew deployDocs -PdeployDocsSshKeyPath=$DEPLOY_SSH_KEY -PdeployDocsSshUsername=$SPRING_DOCS_USERNAME --refresh-dependencies --no-daemon --stacktrace" - } - } - } - } - }, - schema: { - stage('Deploy Schema') { - node { - checkout scm - withCredentials([file(credentialsId: 'docs.spring.io-jenkins_private_ssh_key', variable: 'DEPLOY_SSH_KEY')]) { - withEnv(["JAVA_HOME=${ tool 'jdk8' }"]) { - sh "./gradlew deploySchema -PdeployDocsSshKeyPath=$DEPLOY_SSH_KEY -PdeployDocsSshUsername=$SPRING_DOCS_USERNAME --refresh-dependencies --no-daemon --stacktrace" - } - } - } - } } } } catch(Exception e) {