Apply jenkins file
This commit is contained in:
Vendored
+24
@@ -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'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user