jenkins-pipelines/vars/notAborted.groovy

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()
}
}