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