diff --git a/Jenkinsfile b/Jenkinsfile index 6e31ef39..e4e1fd19 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -13,9 +13,9 @@ git checkout $BRANCH''' } } stage('Build') { - steps { - echo 'Hi' + sshagent (credentials: ['willb']) { + sh 'ssh -o StrictHostKeyChecking=no 172.17.0.1 echo hi' } } } -} \ No newline at end of file +}