-
Notifications
You must be signed in to change notification settings - Fork 4.1k
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
Re-enable integration tests against the newer image #25653
Re-enable integration tests against the newer image #25653
Conversation
We had disabled integration tests in -vs-deps since we were regularly moving to new Visual Studio APIs and we were waiting to get new imaging systems setup. Now that things have stabilized and we have new images, we can use them.
@dotnet-bot test ci please. |
netci.groovy
Outdated
def myJob = job(jobName) { | ||
description("Windows ${configuration} tests on ${buildTarget}") | ||
steps { | ||
batchFile(""".\\build\\scripts\\cibuild.cmd ${(configuration == 'debug') ? '-debug' : '-release'} -testVsi""") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just do -$configuration
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The current pattern matches elsewhere in the file. I'm trusting that overall this is just a revert of a previous change that decided to use deletion instead of commenting.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM once the switch is simplified.
netci.groovy
Outdated
def myJob = job(jobName) { | ||
description("Windows ${configuration} tests on ${buildTarget}") | ||
steps { | ||
batchFile(""".\\build\\scripts\\cibuild.cmd ${(configuration == 'debug') ? '-debug' : '-release'} -testVsi""") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The current pattern matches elsewhere in the file. I'm trusting that overall this is just a revert of a previous change that decided to use deletion instead of commenting.
@dotnet-bot test ci please. |
We had disabled integration tests in -vs-deps since we were regularly moving to new Visual Studio APIs and we were waiting to get new imaging systems setup. Now that things have stabilized and we have new images, we can use them.