-
Notifications
You must be signed in to change notification settings - Fork 5.3k
NO-MERGE: use staging Helix #123846
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
base: main
Are you sure you want to change the base?
NO-MERGE: use staging Helix #123846
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -24,14 +24,14 @@ parameters: | |
| DotNetCliVersion: '' # optional -- version of the CLI to send to Helix; based on this: https://raw.githubusercontent.com/dotnet/core/main/release-notes/releases-index.json | ||
| WaitForWorkItemCompletion: true # optional -- true will make the task wait until work items have been completed and fail the build if work items fail. False is "fire and forget." | ||
| IsExternal: false # [DEPRECATED] -- doesn't do anything, jobs are external if HelixAccessToken is empty and Creator is set | ||
| HelixBaseUri: 'https://helix.dot.net/' # optional -- sets the Helix API base URI (allows targeting https://helix.int-dot.net ) | ||
| HelixBaseUri: 'https://helix.int-dot.net/' # optional -- sets the Helix API base URI (allows targeting https://helix.int-dot.net ) | ||
| Creator: '' # optional -- if the build is external, use this to specify who is sending the job | ||
| DisplayNamePrefix: 'Run Tests' # optional -- rename the beginning of the displayName of the steps in AzDO | ||
| DisplayNamePrefix: 'Run Tests' # optional -- rename the beginning of the displayName of the steps in AzDO | ||
| condition: succeeded() # optional -- condition for step to execute; defaults to succeeded() | ||
| continueOnError: false # optional -- determines whether to continue the build if the step errors; defaults to false | ||
|
|
||
| steps: | ||
| - powershell: 'powershell "$env:BUILD_SOURCESDIRECTORY\eng\common\msbuild.ps1 $env:BUILD_SOURCESDIRECTORY/${{ parameters.HelixProjectPath }} /restore /p:TreatWarningsAsErrors=false ${{ parameters.HelixProjectArguments }} /t:Test /bl:$env:BUILD_SOURCESDIRECTORY\artifacts\log\$env:BuildConfig\SendToHelix.binlog"' | ||
| - powershell: 'powershell "$env:BUILD_SOURCESDIRECTORY\eng\common\msbuild.ps1 $env:BUILD_SOURCESDIRECTORY/${{ parameters.HelixProjectPath }} /restore /p:HelixBaseUri=https://helix.int-dot.net/ /p:TreatWarningsAsErrors=false ${{ parameters.HelixProjectArguments }} /t:Test /bl:$env:BUILD_SOURCESDIRECTORY\artifacts\log\$env:BuildConfig\SendToHelix.binlog"' | ||
|
||
| displayName: ${{ parameters.DisplayNamePrefix }} (Windows) | ||
| env: | ||
| BuildConfig: $(_BuildConfig) | ||
|
|
@@ -56,12 +56,13 @@ steps: | |
| DotNetCliPackageType: ${{ parameters.DotNetCliPackageType }} | ||
| DotNetCliVersion: ${{ parameters.DotNetCliVersion }} | ||
| WaitForWorkItemCompletion: ${{ parameters.WaitForWorkItemCompletion }} | ||
| HelixBaseUri: ${{ parameters.HelixBaseUri }} | ||
| HelixBaseUri: "https://helix.int-dot.net/" | ||
| SYSTEM_HELIX_URI: "https://helix.int-dot.net/" | ||
| Creator: ${{ parameters.Creator }} | ||
| SYSTEM_ACCESSTOKEN: $(System.AccessToken) | ||
| condition: and(${{ parameters.condition }}, eq(variables['Agent.Os'], 'Windows_NT')) | ||
| continueOnError: ${{ parameters.continueOnError }} | ||
| - script: $BUILD_SOURCESDIRECTORY/eng/common/msbuild.sh $BUILD_SOURCESDIRECTORY/${{ parameters.HelixProjectPath }} /restore /p:TreatWarningsAsErrors=false ${{ parameters.HelixProjectArguments }} /t:Test /bl:$BUILD_SOURCESDIRECTORY/artifacts/log/$BuildConfig/SendToHelix.binlog | ||
| - script: $BUILD_SOURCESDIRECTORY/eng/common/msbuild.sh $BUILD_SOURCESDIRECTORY/${{ parameters.HelixProjectPath }} /restore /p:TreatWarningsAsErrors=false ${{ parameters.HelixProjectArguments }} /p:HelixBaseUri=https://helix.int-dot.net/ /t:Test /bl:$BUILD_SOURCESDIRECTORY/artifacts/log/$BuildConfig/SendToHelix.binlog | ||
|
||
| displayName: ${{ parameters.DisplayNamePrefix }} (Unix) | ||
| env: | ||
| BuildConfig: $(_BuildConfig) | ||
|
|
@@ -86,7 +87,8 @@ steps: | |
| DotNetCliPackageType: ${{ parameters.DotNetCliPackageType }} | ||
| DotNetCliVersion: ${{ parameters.DotNetCliVersion }} | ||
| WaitForWorkItemCompletion: ${{ parameters.WaitForWorkItemCompletion }} | ||
| HelixBaseUri: ${{ parameters.HelixBaseUri }} | ||
| HelixBaseUri: "https://helix.int-dot.net/" | ||
| SYSTEM_HELIX_URI: "https://helix.int-dot.net/" | ||
| Creator: ${{ parameters.Creator }} | ||
| SYSTEM_ACCESSTOKEN: $(System.AccessToken) | ||
| condition: and(${{ parameters.condition }}, ne(variables['Agent.Os'], 'Windows_NT')) | ||
|
|
||
| Original file line number | Diff line number | Diff line change | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
| @@ -1,5 +1,6 @@ | ||||||||||
| <Project Sdk="Microsoft.DotNet.Helix.Sdk" DefaultTargets="Test"> | ||||||||||
| <PropertyGroup> | ||||||||||
| <HelixBaseUri>https://helix.int-dot.net/</HelixBaseUri> | ||||||||||
| <IncludeXHarnessCli>true</IncludeXHarnessCli> | ||||||||||
|
Comment on lines
+3
to
4
|
||||||||||
| <HelixBaseUri>https://helix.int-dot.net/</HelixBaseUri> | |
| <IncludeXHarnessCli>true</IncludeXHarnessCli> | |
| <HelixBaseUri>https://helix.int-dot.net/</HelixBaseUri> | |
| <IncludeXHarnessCli>true</IncludeXHarnessCli> |
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 PR title explicitly states "NO-MERGE" indicating this is experimental and should not be merged into the main branch. This PR changes the Helix base URI from production (helix.dot.net) to staging (helix.int-dot.net), which would affect all Helix test submissions. Since this is marked as experimental in the description, it should not be merged without removing the NO-MERGE designation and proper validation.