Apply jenkins file
This commit is contained in:
parent
b54894f438
commit
71163182ec
24
Jenkinsfile
vendored
Normal file
24
Jenkinsfile
vendored
Normal 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'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user