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:/" } } }