From 538e213879e025b0dae00933187df083119e4f8e Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Tue, 19 Sep 2023 21:08:15 +0200 Subject: [PATCH] this is odd --- automation/Jenkinsfile | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/automation/Jenkinsfile b/automation/Jenkinsfile index a2122bb..e112e72 100644 --- a/automation/Jenkinsfile +++ b/automation/Jenkinsfile @@ -11,11 +11,12 @@ pipeline { branch 'main' } steps { - sshagent(credentials: ['documentation-buildfix']) { + sh 'echo Hello World' + // sshagent(credentials: ['documentation-buildfix']) { // Deploy to Apache webserver - sh 'rsync -r --delete --exclude projects/* --exclude static/font-univers . buildfix@documentation.irs.uni-stuttgart.de:/' - } - } + // sh 'rsync -r --delete --exclude projects/* --exclude static/font-univers . buildfix@documentation.irs.uni-stuttgart.de:/' + // } + //} } } }