From f7bdd184d4015e25c83203f89e501ab35c41312e Mon Sep 17 00:00:00 2001 From: Takiguchi Date: Mon, 29 Jul 2019 22:40:18 +0200 Subject: [PATCH] Correct the codiki-properties scm clonning. --- jenkins/Jenkinsfile-integ | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/jenkins/Jenkinsfile-integ b/jenkins/Jenkinsfile-integ index b19c938..e1b8a21 100644 --- a/jenkins/Jenkinsfile-integ +++ b/jenkins/Jenkinsfile-integ @@ -14,14 +14,9 @@ pipeline { stage('Configuration') { steps { dir('codiki-properties') { - checkout([$class: 'GitSCM', - url: 'https://gogs.takiguchi.ovh/florian/codiki-properties.git', - branches: [[name: '*/master']], - userRemoteConfigs: [[credentialsId: '7585a4a3-e016-4558-bd8d-e8fde4c48629', url: 'https://gogs.takiguchi.ovh/florian/codiki-properties.git']] - ]) + git url:'https://gogs.takiguchi.ovh/florian/codiki-properties.git', branch: 'master', credentialsId: 'a6494064-8130-42fd-9d3d-e7734518c79e' } script { - sh """ cp ./codiki-properties/application-prod.yml ./src/main/resources/application.yml """