diff --git a/Jenkinsfile b/Jenkinsfile index 5a6d088..df0eb7e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,7 +1,11 @@ node { - // This displays colors using the 'xterm' ansi color map. - ansiColor('xterm') { - // Just some echoes to show the ANSI color. - stage "\u001B[31mI'm Red\u001B[0m Now not" - } + def remote = [:] + remote.name = 'workstation' + remote.host = 'workstation' + remote.user = 'dany' + remote.allowAnyHosts = true + stage('Remote SSH') { + sshCommand remote: remote, command: "ls -lrt" + sshCommand remote: remote, command: "for i in {1..5}; do echo -n \"Loop \$i \"; date ; sleep 1; done" + } } \ No newline at end of file