We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c93798a commit 3b3873aCopy full SHA for 3b3873a
Jenkinsfile
@@ -1,8 +1,14 @@
1
stage('Build'){
2
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
9
node {
10
checkout scm
11
packpack.prepareSources()
12
}
- packpack.packpackBuildMatrix('result')
13
+ packpack.packpackBuildMatrix('result', matrix)
14
0 commit comments