Skip to content

Commit

Permalink
Merge pull request networkupstools#2129 from networkupstools/fightwarn
Browse files Browse the repository at this point in the history
CI: Apply github notifications and JSL loading enhancements from Fightwarn branch
  • Loading branch information
jimklimov authored Oct 24, 2023
2 parents 37289c1 + 971f53e commit 8ab6376
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion Jenkinsfile-dynamatrix
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@ def buildCommit = '86a32237c7df45c5aba640746f7afc4de09505a1'

// See https://github.com/networkupstools/jenkins-dynamatrix/ for the lib
// Agent setup evolves at https://ci.networkupstools.org/computer/
@Library('jenkins-dynamatrix') _
// NOTE: The "${BRANCH_NAME}" below IS NOT A VARIABLE!
// Special notation per custom plugin build including changes from
// https://github.com/jenkinsci/pipeline-groovy-lib-plugin/pull/19/
@Library('jenkins-dynamatrix@${BRANCH_NAME}') _
import org.nut.dynamatrix.dynamatrixGlobalState;
import org.nut.dynamatrix.*;

Expand Down Expand Up @@ -1285,6 +1288,14 @@ if ( env?.BRANCH_NAME ==~ /.*verbose.*/ )
dynamatrixGlobalState.enableDebugErrors = true
dynamatrixGlobalState.enableDebugMilestones = true
dynamatrixGlobalState.enableDebugMilestonesDetails = true
dynamatrixGlobalState.enableDebugTraceGithubStatusHighlights = true
}

if (true) // <<< (Un-)comment away in select runs/branches
//if (false) // <<< (Un-)comment away in select runs/branches
//if ( env?.BRANCH_NAME ==~ /.*fightwarn.*/ )
{
dynamatrixGlobalState.enableDebugTraceGithubStatusHighlights = true
}

dynamatrixPipeline(dynacfgBase, dynacfgPipeline)

0 comments on commit 8ab6376

Please sign in to comment.