-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile
31 lines (27 loc) · 927 Bytes
/
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
// 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.Sec & QC.Sty & QC.Ver') {
steps {
script {
projectConfig = pipelineConfig(
configFile: '.sqa/config.yml',
scmConfigs: [ localBranch: true ],
validatorDockerImage: 'eoscsynergy/jpl-validator:2.4.0'
)
buildStages(projectConfig)
}
}
post {
cleanup {
cleanWs()
}
}
}
}
}