diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..d67cbe7 --- /dev/null +++ b/Jenkinsfile @@ -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' + } + } + } +}