Server-Root/Jenkinsfile

24 lines
388 B
Plaintext
Raw Normal View History

2018-08-08 21:53:18 +02:00
pipeline {
2018-08-08 21:54:45 +02:00
agent {
2018-08-08 21:53:18 +02:00
label 'linux && debian && teaspeak'
}
2018-08-08 21:55:36 +02:00
stages {
2018-08-08 21:53:18 +02:00
stage ('Initialize libraries') {
steps {
sh 'apt-get update'
sh 'git submodule update --init --remote --recursive'
2018-08-08 22:21:24 +02:00
sh 'git submodule update'
2018-08-08 21:53:18 +02:00
sh './attach_modules.sh'
2018-08-08 22:07:35 +02:00
sh 'cd libraries; ./build.sh'
2018-08-08 21:53:18 +02:00
}
}
stage ('Build TeaSpeak') {
steps {
sh 'build_teaspeak.sh'
}
}
}
}