mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-06-07 04:53:44 +02:00
update jenkins to use cmake for builds
This commit is contained in:
parent
39ad7bc741
commit
7e5c68c553
1 changed files with 4 additions and 1 deletions
5
Jenkinsfile
vendored
5
Jenkinsfile
vendored
|
@ -14,7 +14,10 @@ parallel 'centos7': {
|
||||||
checkout scm
|
checkout scm
|
||||||
|
|
||||||
stage('Build Centos 7') {
|
stage('Build Centos 7') {
|
||||||
sh 'make -f make-linux.mk'
|
sh '''mkdir build && cd build
|
||||||
|
CC=clang CXX=clang++ cmake ..
|
||||||
|
make -j4
|
||||||
|
'''
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch (err) {
|
catch (err) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue