uts-server/Jenkinsfile

35 lines
801 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(
"OpenBSD": {
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
},
"FreeBSD": {
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
},
"CentOS 7": {
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
},
"Debian 8": {
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
}
)
}
}
}
}