mirror of
https://github.com/kakwa/uts-server
synced 2025-01-09 13:14:31 +01:00
trying to specify nodes
This commit is contained in:
parent
fce9da1e3a
commit
5a1ba70924
50
Jenkinsfile
vendored
50
Jenkinsfile
vendored
@ -1,35 +1,39 @@
|
||||
pipeline {
|
||||
agent any
|
||||
agent none
|
||||
stages {
|
||||
stage('error') {
|
||||
stage('Compile') {
|
||||
steps {
|
||||
parallel(
|
||||
"openbsd-6.1": {
|
||||
git 'https://github.com/kakwa/uts-server'
|
||||
sh 'cmake . -DBUNDLE_CIVETWEB=ON'
|
||||
sh 'make'
|
||||
|
||||
"OpenBSD 6.1": {
|
||||
node('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'
|
||||
|
||||
"FreeBSD 11": {
|
||||
node('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'
|
||||
|
||||
"CentOS 7": {
|
||||
node('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'
|
||||
|
||||
"Debian 8": {
|
||||
node('debian-8') {
|
||||
git 'https://github.com/kakwa/uts-server'
|
||||
sh 'cmake . -DBUNDLE_CIVETWEB=ON'
|
||||
sh 'make'
|
||||
}
|
||||
}
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user