Projet

Général

Profil

0001-ci-disable-concurrent-builds.patch

Frédéric Péters, 15 mai 2022 11:14

Télécharger (581 octets)

Voir les différences:

Subject: [PATCH 1/6] ci: disable concurrent builds

 Jenkinsfile | 3 +++
 1 file changed, 3 insertions(+)
Jenkinsfile
2 2

  
3 3
pipeline {
4 4
    agent any
5
    options {
6
        disableConcurrentBuilds()
7
    }
5 8
    stages {
6 9
        stage('Unit Tests') {
7 10
            steps {
8
-