Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make OSX 10.11 usage explicit (#17483) #17488

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Make OSX 10.11 usage explicit (#17483)
  • Loading branch information
mmitche committed Mar 1, 2017
commit 6e244cea55f26bf64c20d76a5bdcca25d1896491
2 changes: 1 addition & 1 deletion netci.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -132,14 +132,14 @@ commitPullList.each { isPr ->
def jobName = Utilities.getFullJobName(projectName, "mac_debug", isPr)
def myJob = job(jobName) {
description("Mac tests")
label('mac-roslyn')
steps {
shell("./cibuild.sh --nocache --debug")
}
}

def triggerPhraseOnly = true
def triggerPhraseExtra = "mac"
Utilities.setMachineAffinity(myJob, 'OSX10.11', 'latest-or-auto')
Utilities.addXUnitDotNETResults(myJob, '**/xUnitResults/*.xml')
addRoslynJob(myJob, jobName, branchName, isPr, triggerPhraseExtra, triggerPhraseOnly)
}
Expand Down