jenkins-pipelines/vars/notAborted.groovy
Davlet Panech be58140638 Add license and copyright
Story: 2010226
Task: 46011

Change-Id: I721f1509637b910c05e4151eeb7ad7e1cb8db119
Signed-off-by: Davlet Panech <davlet.panech@windriver.com>
2022-08-15 14:16:07 -04:00

12 lines
195 B
Groovy

//
// Copyright (c) 2022 Wind River Systems, Inc.
//
// SPDX-License-Identifier: Apache-2.0
//
def call (final callback) {
if (currentBuild.result != 'ABORTED') {
callback()
}
}