uts-server/Jenkinsfile

35 lines
808 B
Plaintext
Raw Normal View History

2017-04-23 18:10:40 +02:00
pipeline {
agent any
stages {
2017-04-25 01:12:04 +02:00
stage('error') {
2017-04-23 18:10:40 +02:00
steps {
parallel(
2017-04-25 09:44:28 +02:00
"openbsd-6.1": {
2017-04-23 18:10:40 +02:00
git 'https://github.com/kakwa/uts-server'
2017-04-25 01:24:15 +02:00
sh 'cmake . -DBUNDLE_CIVETWEB=ON'
sh 'make'
2017-04-23 18:10:40 +02:00
},
2017-04-25 09:44:28 +02:00
"freebsd-11": {
2017-04-23 18:10:40 +02:00
git 'https://github.com/kakwa/uts-server'
2017-04-25 01:24:15 +02:00
sh 'cmake . -DBUNDLE_CIVETWEB=ON'
sh 'make'
2017-04-23 18:10:40 +02:00
},
2017-04-25 09:44:28 +02:00
"centos-7": {
2017-04-23 18:10:40 +02:00
git 'https://github.com/kakwa/uts-server'
2017-04-25 01:24:15 +02:00
sh 'cmake . -DBUNDLE_CIVETWEB=ON'
sh 'make'
2017-04-23 18:10:40 +02:00
2017-04-25 01:12:04 +02:00
},
2017-04-25 09:44:28 +02:00
"debian-8": {
2017-04-25 01:12:04 +02:00
git 'https://github.com/kakwa/uts-server'
2017-04-25 01:24:15 +02:00
sh 'cmake . -DBUNDLE_CIVETWEB=ON'
sh 'make'
2017-04-25 01:12:04 +02:00
2017-04-23 18:10:40 +02:00
}
)
}
}
}
}