diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..87082b5 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,23 @@ +pipeline { + agent any + stages { + stage('') { + steps { + parallel( + "OpenBSD": { + git 'https://github.com/kakwa/uts-server' + + }, + "FreeBSD": { + git 'https://github.com/kakwa/uts-server' + + }, + "CentOS 7": { + git 'https://github.com/kakwa/uts-server' + + } + ) + } + } + } +} \ No newline at end of file