Projet

Général

Profil

0001-jenkins-shorten-temporary-test-dir-name-45637.patch

Paul Marillonnet, 01 août 2020 12:16

Télécharger (693 octets)

Voir les différences:

Subject: [PATCH] jenkins: shorten temporary test dir name (#45637)

 Jenkinsfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
Jenkinsfile
4 4
    agent any
5 5
    options { disableConcurrentBuilds() }
6 6
    environment {
7
        TMPDIR = "/tmp/$BUILD_TAG"
7
        TMPDIR = "/tmp/$BUILD_TAG".substring(0, 23)
8 8
    }
9 9
    stages {
10 10
        stage('Unit Tests (production environment)') {
11
-