-
Notifications
You must be signed in to change notification settings - Fork 4.7k
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
CI: Fix running the workaround for NuGet-Migrations
issue
#85692
Conversation
Tagging subscribers to this area: @dotnet/area-infrastructure-libraries Issue DetailsThe workaround adds:
which uses Instead, use
|
6f8f7d1
to
9bcb2ba
Compare
The workaround adds: `(CONSOLE_TEMP_DIR="%24(mktemp -d)" %3B "$DOTNET_ROOT/dotnet" new console -o "$CONSOLE_TEMP_DIR" %3B rm -rf "$CONSOLE_TEMP_DIR") || true` which uses `$DOTNET_ROOT/dotnet`. But this is set for `HelixPreCommand` which runs *before* `DOTNET_ROOT` is set. Instead, use `HelixCommandPrefixItem`.
9bcb2ba
to
663e91f
Compare
/azp run runtime-wasm |
Azure Pipelines successfully started running 1 pipeline(s). |
we also have a copy of this logic in src/tests/Common/helixpublishwitharcade.proj |
/azp run runtime-extra-platforms |
Azure Pipelines successfully started running 1 pipeline(s). |
Tagging subscribers to this area: @dotnet/runtime-infrastructure Issue DetailsThe workaround adds:
which uses Instead, use
|
/azp run runtime-wasm |
Azure Pipelines successfully started running 1 pipeline(s). |
/azp run runtime-wasm,runtime-extra-platforms |
Azure Pipelines successfully started running 2 pipeline(s). |
/azp run runtime-wasm,runtime-extra-platforms |
Azure Pipelines successfully started running 2 pipeline(s). |
@lewing @akoeplinger could you please take a look at the updated PR? |
/azp run runtime-wasm,runtime-extra-platforms |
Azure Pipelines successfully started running 2 pipeline(s). |
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.
Backport to 7 as well?
@steveisok @carlossanlop could you please keep an eye out for any breakage that this might cause, hopefully none! I will be watching the wasm jobs. |
The workaround adds:
(CONSOLE_TEMP_DIR="%24(mktemp -d)" %3B "$DOTNET_ROOT/dotnet" new console -o "$CONSOLE_TEMP_DIR" %3B rm -rf "$CONSOLE_TEMP_DIR") || true
which uses
$DOTNET_ROOT/dotnet
. But this is set forHelixPreCommand
which runs beforeDOTNET_ROOT
is set.Instead, use
HelixCommandPrefixItem
.