-
Notifications
You must be signed in to change notification settings - Fork 4
/
Jenkinsfile
32 lines (28 loc) · 935 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
32
// SPDX-FileCopyrightText: Copyright contributors to the Software Quality Assurance as a Service (SQAaaS) project <[email protected]>
// SPDX-FileContributor: 2017-2024 Pablo Orviz <[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 criteria') {
steps {
script {
projectConfig = pipelineConfig(
configFile: '.sqa/config.yml',
scmConfigs: [ localBranch: true ],
validatorDockerImage: 'eoscsynergy/jpl-validator:1.2.1'
)
buildStages(projectConfig)
}
}
post {
cleanup {
cleanWs()
}
}
}
}
}