From 7c3f09b1ff9148edd0e0c448f3e9021c1c1a4e31 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Wed, 20 Sep 2023 00:07:18 +0200 Subject: [PATCH] is this it?!? --- automation/Jenkinsfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/automation/Jenkinsfile b/automation/Jenkinsfile index e2ac59e..d88b3b5 100644 --- a/automation/Jenkinsfile +++ b/automation/Jenkinsfile @@ -3,6 +3,7 @@ pipeline { dockerfile { dir 'automation' reuseNode true + args '--network host' } } // agent any @@ -14,7 +15,7 @@ pipeline { steps { 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:/" } } }