Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.
/ corefx Public archive

Commit

Permalink
Merge pull request #4247 from sokket/style
Browse files Browse the repository at this point in the history
Disabling the formatting check globally in the groovy script
  • Loading branch information
Jonathan Miller committed Oct 29, 2015
2 parents 27be68f + 185e583 commit 6c106c3
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions netci.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ def prCCJob = job(Utilities.getFullJobName(project, 'code_coverage_windows', tru
}
}

[true, false].each { isPR ->
// Jenkins seems to have a bug where it uses the master groovy script instead of the branch-specific
// script, so disable this globally
/*[true, false].each { isPR ->
def codeFormatterJobName = Utilities.getFullJobName(project, 'native_code_format_check', isPR)
def codeFormatterJob = job(codeFormatterJobName) {
label('ubuntu')
Expand All @@ -37,7 +39,7 @@ def prCCJob = job(Utilities.getFullJobName(project, 'code_coverage_windows', tru
}
Utilities.simpleInnerLoopJobSetup(codeFormatterJob, project, isPR, "Code Formatter Check")
}
}*/

// For both jobs, archive the coverage info and publish an HTML report
[rollingCCJob, prCCJob].each { newJob ->
Expand Down

0 comments on commit 6c106c3

Please sign in to comment.