This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
This script defines a Jenkins pipeline that executes tasks in parallel on multiple nodes based on specified label expression, | |
retrieves the operating system of each node, and allows selection of nodes using regular expressions. | |
*/ | |
properties([ | |
parameters([ | |
[$class: 'LabelParameterDefinition', | |
allNodesMatchingLabel: true, | |
name: 'NODE_LABELS', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def DATETIME = new Date().format('yyyy_MM_dd_HH_mm_ss', TimeZone.getTimeZone('Canada/Eastern')) | |
def pluginsToReviewManually = [] | |
def pluginsDeprecated = [] | |
pipeline { | |
agent { label 'master' } | |
options { | |
//Build options | |
disableConcurrentBuilds() | |
buildDiscarder( | |
logRotator ( |