jenkins: shorten temporary test dir name (#45637)

This commit is contained in:
Paul Marillonnet 2020-07-31 15:48:57 +02:00 committed by Benjamin Dauvergne
parent 7d630f53be
commit a66093a5dc
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -4,7 +4,7 @@ pipeline {
agent any
options { disableConcurrentBuilds() }
environment {
TMPDIR = "/tmp/$BUILD_TAG"
TMPDIR = "/tmp/$BUILD_TAG".substring(0, 23)
}
stages {
stage('Unit Tests (production environment)') {