Skip to content

Commit e13296e

Browse files
author
Konstantin Nazarov
committed
Exclude more distros on the bases of absent mqtt libraries
1 parent 2de1755 commit e13296e

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

Jenkinsfile

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
stage('Build'){
22
packpack = new org.tarantool.packpack()
33

4-
// No mosquitto library on centos 6 and ubuntu precise
4+
// No mosquitto library on some old distros
55
matrix = packpack.filterMatrix(
66
packpack.default_matrix,
7-
{!(it['OS'] == 'centos' && it['DIST'] == '6') &&
8-
!(it['OS'] == 'ubuntu' && it['DIST'] == 'precise')})
7+
{!(it['OS'] == 'el' && it['DIST'] == '6') &&
8+
!(it['OS'] == 'ubuntu' && it['DIST'] == 'precise') &&
9+
!(it['OS'] == 'ubuntu' && it['DIST'] == 'trusty') &&
10+
!(it['OS'] == 'fedora' && it['DIST'] == 'rawhide')})
911

1012
node {
1113
checkout scm

0 commit comments

Comments
 (0)