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 3b3873a commit 2de1755Copy full SHA for 2de1755
Jenkinsfile
@@ -1,10 +1,11 @@
1
stage('Build'){
2
packpack = new org.tarantool.packpack()
3
4
- // No mosquitto library on centos 6
+ // No mosquitto library on centos 6 and ubuntu precise
5
matrix = packpack.filterMatrix(
6
packpack.default_matrix,
7
- {!(it['OS'] == 'centos' && it['DIST'] == '6')})
+ {!(it['OS'] == 'centos' && it['DIST'] == '6') &&
8
+ !(it['OS'] == 'ubuntu' && it['DIST'] == 'precise')})
9
10
node {
11
checkout scm
0 commit comments