-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
37 lines (33 loc) · 1.05 KB
/
Jenkinsfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// SPDX-FileCopyrightText: Copyright contributors to the Software Quality Assurance as a Service (SQAaaS) project <[email protected]>
//
// SPDX-License-Identifier: GPL-3.0-only
@Library(['github.com/indigo-dc/[email protected]']) _
def projectConfig
pipeline {
agent any
stages {
stage('SQA baseline criterion: QC.Acc & QC.Doc & QC.Lic & QC.Met & QC.Sty & QC.Ver') {
when {
anyOf {
changeset ".sqa/*"
changeset "Jenkinsfile"
}
}
steps {
script {
projectConfig = pipelineConfig(
configFile: '.sqa/config.yml',
scmConfigs: [ localBranch: true ],
validatorDockerImage: 'eoscsynergy/jpl-validator:2.4.0'
)
buildStages(projectConfig)
}
}
post {
cleanup {
cleanWs()
}
}
}
}
}