updating the test jenkinsfiles

This commit is contained in:
hyung-hwan 2021-09-01 13:16:21 +00:00
parent 10a366a9e0
commit 2d46766a23

View File

@ -9,13 +9,12 @@ pipeline {
stages { stages {
stage('Multi-Builld') { stage('Pre-builds') {
matrix { matrix {
axes { axes {
axis { axis {
name 'BUILD_TYPE' name 'BUILD_TYPE'
values 'debug-shared', 'debug-static', 'release-shared', 'release-static' values 'debug-shared', 'debug-static', 'release-shared', 'release-static'
//values 'debug-shared', 'debug-static'
} }
axis { axis {
@ -104,5 +103,13 @@ pipeline {
} }
} }
} }
stage('RPM build') {
agent { label "fedora" }
steps {
echo "BUILD THE FINAL RPM...."
}
}
} }
} }