You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Microsoft.DotNet.XUnitExtensions , Microsoft.DotNet.Arcade.Sdk
From Version 7.0.0-beta.21514.3 -> To Version 6.0.0-beta.21515.3
Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
echo"BuildArch can be: arm(default), armel, arm64, x86"
9
-
echo"CodeName - optional, Code name for Linux, can be: xenial(default), zesty, bionic, alpine, alpine3.13 or alpine3.14. If BuildArch is armel, LinuxCodeName is jessie(default) or tizen."
9
+
echo"CodeName - optional, Code name for Linux, can be: xenial(default), zesty, bionic, alpine, alpine3.9 or alpine3.13. If BuildArch is armel, LinuxCodeName is jessie(default) or tizen."
10
10
echo" for FreeBSD can be: freebsd11, freebsd12, freebsd13"
11
11
echo" for illumos can be: illumos."
12
12
echo"lldbx.y - optional, LLDB version, can be: lldb3.9(default), lldb4.0, lldb5.0, lldb6.0 no-lldb. Ignored for alpine and FreeBSD"
if [["$desired_version"!="-1"]];then majorVersion="${parts[0]}";break;fi
64
+
if [ "$desired_version"!="-1" ];then majorVersion="${parts[0]}";break;fi
60
65
done
61
66
62
-
if [[-z"$majorVersion"]];then
67
+
if [ -z"$majorVersion" ];then
63
68
ifcommand -v "$compiler"> /dev/null;then
64
-
if [["$(uname)"!="Darwin"]];then
69
+
if [ "$(uname)"!="Darwin" ];then
65
70
Write-PipelineTelemetryError -category "Build" -type "warning""Specific version of $compiler not found, falling back to use the one in PATH."
66
71
fi
67
-
CC="$(command -v "$compiler")"
68
-
CXX="$(command -v "$cxxCompiler")"
72
+
exportCC="$(command -v "$compiler")"
73
+
exportCXX="$(command -v "$cxxCompiler")"
69
74
else
70
75
Write-PipelineTelemetryError -category "Build""No usable version of $compiler found."
71
76
exit 1
72
77
fi
73
78
else
74
-
if [["$compiler"=="clang"&&"$majorVersion"-lt 5 ]];then
75
-
if [["$build_arch"=="arm"||"$build_arch"=="armel"]];then
79
+
if [ "$compiler"="clang"] &&[ "$majorVersion"-lt 5 ];then
80
+
if [ "$build_arch"="arm"] ||[ "$build_arch"="armel" ];then
76
81
ifcommand -v "$compiler"> /dev/null;then
77
82
Write-PipelineTelemetryError -category "Build" -type "warning""Found clang version $majorVersion which is not supported on arm/armel architectures, falling back to use clang from PATH."
78
-
CC="$(command -v "$compiler")"
79
-
CXX="$(command -v "$cxxCompiler")"
83
+
exportCC="$(command -v "$compiler")"
84
+
exportCXX="$(command -v "$cxxCompiler")"
80
85
else
81
86
Write-PipelineTelemetryError -category "Build""Found clang version $majorVersion which is not supported on arm/armel architectures, and there is no clang in PATH."
Copy file name to clipboardExpand all lines: eng/common/templates/steps/send-to-helix.yml
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -20,6 +20,7 @@ parameters:
20
20
IncludeDotNetCli: false # optional -- true will download a version of the .NET CLI onto the Helix machine as a correlation payload; requires DotNetCliPackageType and DotNetCliVersion
21
21
DotNetCliPackageType: ''# optional -- either 'sdk', 'runtime' or 'aspnetcore-runtime'; determines whether the sdk or runtime will be sent to Helix; see https://raw.githubusercontent.com/dotnet/core/main/release-notes/releases-index.json
22
22
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
23
+
EnableXUnitReporter: false # optional -- true enables XUnit result reporting to Mission Control
23
24
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."
24
25
IsExternal: false # [DEPRECATED] -- doesn't do anything, jobs are external if HelixAccessToken is empty and Creator is set
25
26
HelixBaseUri: 'https://helix.dot.net/'# optional -- sets the Helix API base URI (allows targeting int)
0 commit comments