Ver Fonte

Обновить 'Jenkinsfile'

Vladimir Tomishinets há 6 anos atrás
pai
commit
38ffaaeff0
1 ficheiros alterados com 1 adições e 3 exclusões
  1. 1 3
      Jenkinsfile

+ 1 - 3
Jenkinsfile

@@ -19,9 +19,7 @@ pipeline {
   stages {
     stage("PULL REPOs") {
       steps {
-        ansiColor('xterm') {
-          echo "Pull repo ${SWARM_GIT_NAME}"
-        }
+        echo "Pull repo ${SWARM_GIT_NAME}"
         withCredentials([sshUserPrivateKey(credentialsId: 'provision', keyFileVariable: 'GIT_SSH_KEY', passphraseVariable: '', usernameVariable: 'GIT_SSH_USERNAME')]) {
           sh '''GIT_SSH_COMMAND='ssh -i ${GIT_SSH_KEY} -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no' \
                 git clone ${SWARM_GIT_URL}'''