1
0
mirror of https://github.com/kakwa/uts-server synced 2024-06-03 01:28:08 +02:00

trying to specify nodes

This commit is contained in:
kakwa 2017-04-25 09:58:11 +02:00
parent b06dd768d8
commit 8a99458af2

24
Jenkinsfile vendored
View File

@ -1,32 +1,36 @@
pipeline { pipeline {
agent any agent none
stages { stages {
stage('error') { stage('Compile') {
steps { steps {
parallel( parallel(
"openbsd-6.1": { "OpenBSD 6.1": {
node('openbsd-6.1') {
git 'https://github.com/kakwa/uts-server' git 'https://github.com/kakwa/uts-server'
sh 'cmake . -DBUNDLE_CIVETWEB=ON' sh 'cmake . -DBUNDLE_CIVETWEB=ON'
sh 'make' sh 'make'
}
}, },
"freebsd-11": { "FreeBSD 11": {
node('freebsd-11') {
git 'https://github.com/kakwa/uts-server' git 'https://github.com/kakwa/uts-server'
sh 'cmake . -DBUNDLE_CIVETWEB=ON' sh 'cmake . -DBUNDLE_CIVETWEB=ON'
sh 'make' sh 'make'
}
}, },
"centos-7": { "CentOS 7": {
node('centos-7') {
git 'https://github.com/kakwa/uts-server' git 'https://github.com/kakwa/uts-server'
sh 'cmake . -DBUNDLE_CIVETWEB=ON' sh 'cmake . -DBUNDLE_CIVETWEB=ON'
sh 'make' sh 'make'
}
}, },
"debian-8": { "Debian 8": {
node('debian-8') {
git 'https://github.com/kakwa/uts-server' git 'https://github.com/kakwa/uts-server'
sh 'cmake . -DBUNDLE_CIVETWEB=ON' sh 'cmake . -DBUNDLE_CIVETWEB=ON'
sh 'make' sh 'make'
}
} }
) )
} }