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 266f8ef commit 71da9c3Copy full SHA for 71da9c3
.ci/Jenkinsfile
@@ -260,6 +260,10 @@ def isPrAffected(integrationName) {
260
// Packages supported in Kibana >= 8.0.0, shouldn't be included in daily tests of the stack 7.x
261
if (manifest != null && manifest['conditions'] != null) {
262
def kibanaVersionCondition = manifest['conditions']['kibana.version']
263
+ if (kibanaVersionCondition == null) {
264
+ kibanaVersionCondition = manifest['conditions']['kibana']['version']
265
+ }
266
+
267
if (kibanaVersionCondition != null) {
268
if (!kibanaVersionCondition.contains('^7.') && "${env.STACK_VERSION}".startsWith('7.')) {
269
echo "[${integrationName}] PR is not affected: unsupported stack (7.x)"
0 commit comments