mirror of
https://github.com/kakwa/uts-server
synced 2024-12-04 23:15:54 +01:00
35 lines
808 B
Groovy
35 lines
808 B
Groovy
pipeline {
|
|
agent any
|
|
stages {
|
|
stage('error') {
|
|
steps {
|
|
parallel(
|
|
"openbsd-6.1": {
|
|
git 'https://github.com/kakwa/uts-server'
|
|
sh 'cmake . -DBUNDLE_CIVETWEB=ON'
|
|
sh 'make'
|
|
|
|
},
|
|
"freebsd-11": {
|
|
git 'https://github.com/kakwa/uts-server'
|
|
sh 'cmake . -DBUNDLE_CIVETWEB=ON'
|
|
sh 'make'
|
|
|
|
},
|
|
"centos-7": {
|
|
git 'https://github.com/kakwa/uts-server'
|
|
sh 'cmake . -DBUNDLE_CIVETWEB=ON'
|
|
sh 'make'
|
|
|
|
},
|
|
"debian-8": {
|
|
git 'https://github.com/kakwa/uts-server'
|
|
sh 'cmake . -DBUNDLE_CIVETWEB=ON'
|
|
sh 'make'
|
|
|
|
}
|
|
)
|
|
}
|
|
}
|
|
}
|
|
} |