Przeglądaj źródła

Обновить 'Jenkinsfile'

Vladimir Tomishinets 6 lat temu
rodzic
commit
38ffaaeff0
1 zmienionych plików z 1 dodań i 3 usunięć
  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}'''