Skip to content

Commit 3b3873a

Browse files
author
Konstantin Nazarov
committed
Skip building mqtt on centos 6
1 parent c93798a commit 3b3873a

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

Jenkinsfile

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
11
stage('Build'){
22
packpack = new org.tarantool.packpack()
3+
4+
// No mosquitto library on centos 6
5+
matrix = packpack.filterMatrix(
6+
packpack.default_matrix,
7+
{!(it['OS'] == 'centos' && it['DIST'] == '6')})
8+
39
node {
410
checkout scm
511
packpack.prepareSources()
612
}
7-
packpack.packpackBuildMatrix('result')
13+
packpack.packpackBuildMatrix('result', matrix)
814
}

0 commit comments

Comments
 (0)