1
0

Update Jenkinsfile

This commit is contained in:
Andrea Cavalli 2020-10-04 19:26:22 +02:00
parent aa7ede5c7e
commit 420386e3e0

16
Jenkinsfile vendored
View File

@ -22,14 +22,14 @@ pipeline {
stages { stages {
stage("Setup workspace") { stage("Setup workspace") {
steps { steps {
sh "mkdir -p \"${workspace}/.m2\"" sh "mkdir -p \"/var/jenkins_cache/.m2\""
sh "chown 1000:1000 -R \"${workspace}/.m2\"" sh "chown 1000:1000 -R \"/var/jenkins_cache/.m2\""
sh "mkdir -p \"${workspace}/.ccache\"" sh "mkdir -p \"/var/jenkins_cache/.ccache\""
sh "chown 1000:1000 -R \"${workspace}/.ccache\"" sh "chown 1000:1000 -R \"/var/jenkins_cache/.ccache\""
sh "mkdir -p \"${workspace}/work\"" sh "mkdir -p \"/var/jenkins_cache/work\""
sh "chown 1000:1000 -R \"${workspace}/work\"" sh "chown 1000:1000 -R \"/var/jenkins_cache/work\""
sh "mkdir -p \"${workspace}/output\"" sh "mkdir -p \"/var/jenkins_cache/output\""
sh "chown 1000:1000 -R \"${workspace}/output\"" sh "chown 1000:1000 -R \"/var/jenkins_cache/output\""
} }
} }