-
Notifications
You must be signed in to change notification settings - Fork 2.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
Build only one configuration in Build.cmd #3443
Conversation
Build only 1 configuration instead of both Debug and Release in Build.cmd Default local development environment to Debug, but CI environment to Release.
@dotnet-bot test ci please |
It seems that in CI it build Debug instead of Release, and xunit is only expecting dlls in the Release subfolder of the projects. It could be nice too to be able to launch the test on debug? |
@dotnet-bot test this please |
@dotnet-bot test GenPRTest/bvt_prtest |
@benjaminpetit yup, I missed that, thanks, we should be able to run tests in the specified (or default) build configuration. Also, this is a run with the updated groovy file that runs in release mode: |
The temporary jobs building in Release mode where deleted (the CI builds expires after a few hours), but they built and tested the Release configuration successfully. |
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
* Build only one configuration in Build.cmd Build only 1 configuration instead of both Debug and Release in Build.cmd Default local development environment to Debug, but CI environment to Release. * Allow running tests in Debug configuration
Build only 1 configuration instead of both Debug and Release in Build.cmd
Default local development environment to Debug, but CI environment to Release.