Skip to content

Commit

Permalink
Merge branch 'hotfix/v0.16.0-jenkins'
Browse files Browse the repository at this point in the history
  • Loading branch information
SergeySeroshtan committed Jul 27, 2021
2 parents 1a51cd9 + be85b49 commit a2630c7
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -684,7 +684,17 @@ def buildPythonPackages(platform, bdistPlatformName) {
return
}

unstash "python_wrapper_${platform}"
docker.image('python:2.7').inside("--user root") {
clearContentUnix()
}

try {
unstash "python_wrapper_${platform}"

} catch(error) {
echo "Error unstashing python_wrapper_${platform}: ${error}"
return
}

dir('wrappers/python') {
docker.image("python:2.7").inside("--user root") {
Expand Down

0 comments on commit a2630c7

Please sign in to comment.