Apply jenkins file

This commit is contained in:
WolverinDEV 2018-08-08 21:53:18 +02:00
parent b54894f438
commit 71163182ec
1 changed files with 24 additions and 0 deletions

24
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,24 @@
pipeline {
agent any
stages {
label 'linux && debian && teaspeak'
}
steps {
stage ('Initialize libraries') {
steps {
sh 'apt-get update'
sh 'git submodule update --init --remote --recursive'
sh './attach_modules.sh'
dir ('libraries') {
sh 'build.sh'
}
}
}
stage ('Build TeaSpeak') {
steps {
sh 'build_teaspeak.sh'
}
}
}
}