adding test jenkinsfile
This commit is contained in:
parent
fdb4e4ee30
commit
984d393873
80
jenkins-pipeline/Jenkinsfile.001
Normal file
80
jenkins-pipeline/Jenkinsfile.001
Normal file
@ -0,0 +1,80 @@
|
||||
pipeline {
|
||||
|
||||
agent none
|
||||
|
||||
environment {
|
||||
SVN_URL = 'https://code.miflux.com/svn/hio/trunk/hio'
|
||||
}
|
||||
stages {
|
||||
|
||||
stage('Multi-Builld') {
|
||||
matrix {
|
||||
axes {
|
||||
axis {
|
||||
name 'BUILD_TYPE'
|
||||
//values 'debug-shared', 'debug-static', 'release-shared', 'release-static'
|
||||
values 'debug-shared', 'debug-static'
|
||||
}
|
||||
|
||||
axis {
|
||||
name 'PLATFORM'
|
||||
//values 'fedora' , 'freebsd'
|
||||
values 'fedora'
|
||||
}
|
||||
}
|
||||
|
||||
//excludes {
|
||||
// exclude {
|
||||
// axis {
|
||||
// name 'BUILD_TYPE'
|
||||
// value 'debug-shared'
|
||||
// }
|
||||
// axis {
|
||||
// name 'PLATFORM'
|
||||
// value 'fedora'
|
||||
// }
|
||||
// }
|
||||
//}
|
||||
|
||||
//agent any
|
||||
agent { label "${PLATFORM}" }
|
||||
|
||||
stages {
|
||||
stage('Checkout') {
|
||||
steps {
|
||||
checkout([$class: 'SubversionSCM',
|
||||
additionalCredentials: [],
|
||||
excludedCommitMessages: '',
|
||||
excludedRegions: '',
|
||||
excludedRevprop: '',
|
||||
excludedUsers: '',
|
||||
filterChangelog: false,
|
||||
ignoreDirPropChanges: false,
|
||||
includedRegions: '',
|
||||
locations: [[
|
||||
depthOption: 'infinity',
|
||||
ignoreExternalsOption: true,
|
||||
//local: 'local-dir',
|
||||
remote: "${SVN_URL}"]],
|
||||
workspaceUpdater: [$class: 'UpdateUpdater']])
|
||||
}
|
||||
}
|
||||
|
||||
stage('Build') {
|
||||
steps {
|
||||
echo "Do build for ${BUILD_TYPE} on ${PLATFORM}"
|
||||
sh "./configure && make"
|
||||
}
|
||||
}
|
||||
|
||||
stage('Test') {
|
||||
steps {
|
||||
echo "Do Test for ${BUILD_TYPE} on ${PLATFORM}"
|
||||
sh "make check"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user