-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge dotnet/main into feature/shell-scripts
- Loading branch information
Showing
235 changed files
with
3,255 additions
and
3,875 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
trigger: none | ||
|
||
schedules: | ||
- cron: "0 6 * * 6" | ||
displayName: Sat at 06:00 AM UTC | ||
branches: | ||
include: | ||
- main | ||
always: true | ||
|
||
extends: | ||
template: /eng/pipelines/common/templates/single-stage-pipeline-with-resources.yml | ||
parameters: | ||
jobs: | ||
|
||
- template: /eng/pipelines/common/platform-matrix.yml | ||
parameters: | ||
jobTemplate: /eng/pipelines/common/build-coreclr-and-libraries-job.yml | ||
buildConfig: checked | ||
platforms: | ||
- Linux_arm | ||
- Linux_arm64 | ||
- Linux_x64 | ||
- OSX_arm64 | ||
- windows_arm | ||
- windows_arm64 | ||
- windows_x64 | ||
- windows_x86 | ||
- CoreClrTestBuildHost # Either OSX_x64 or Linux_x64 | ||
jobParameters: | ||
testGroup: pgo-extra | ||
|
||
- template: /eng/pipelines/common/platform-matrix.yml | ||
parameters: | ||
jobTemplate: /eng/pipelines/common/templates/runtimes/build-test-job.yml | ||
buildConfig: checked | ||
platforms: | ||
- CoreClrTestBuildHost # Either OSX_x64 or Linux_x64 | ||
jobParameters: | ||
testGroup: pgo-extra | ||
|
||
- template: /eng/pipelines/common/platform-matrix.yml | ||
parameters: | ||
jobTemplate: /eng/pipelines/common/templates/runtimes/run-test-job.yml | ||
buildConfig: checked | ||
platforms: | ||
- Linux_arm | ||
- Linux_arm64 | ||
- Linux_x64 | ||
- OSX_arm64 | ||
- windows_arm | ||
- windows_arm64 | ||
- windows_x64 | ||
- windows_x86 | ||
helixQueueGroup: ci | ||
helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml | ||
jobParameters: | ||
testGroup: pgo-extra | ||
liveLibrariesBuildConfig: Release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,30 @@ | ||
<Project> | ||
<!-- Version number to revision number mapping from http://omahaproxy.appspot.com/ and find the closest one in | ||
https://commondatastorage.googleapis.com/chromium-browser-snapshots/index.html?prefix=Linux_x64/ | ||
and https://commondatastorage.googleapis.com/chromium-browser-snapshots/index.html?prefix=Win_x64/ | ||
Eg. latest stable version is 100.0.4896.88 with revision 972766. | ||
but the closest one available in the snapshosts is 972765. | ||
Please make sure to check both platforms as sometimes | ||
the same snapshot might not be available in both of them. | ||
<!-- | ||
Set ChromeChannel properties to get the latest versions | ||
--> | ||
<PropertyGroup> | ||
<ChromeChannel>stable</ChromeChannel> | ||
|
||
<ChromeOSIdentifier Condition="$([MSBuild]::IsOSPlatform('windows'))">win</ChromeOSIdentifier> | ||
<ChromeOSIdentifier Condition="$([MSBuild]::IsOSPlatform('linux'))">linux</ChromeOSIdentifier> | ||
<ChromeOSIdentifier Condition="$([MSBuild]::IsOSPlatform('mac'))">mac</ChromeOSIdentifier> | ||
|
||
<InstallChromeForTests Condition="'$(InstallChromeForTests)' == '' and '$(ChromeOSIdentifier)' == ''">false</InstallChromeForTests> | ||
|
||
<ChromeDir>$(ArtifactsBinDir)chrome\</ChromeDir> | ||
<ChromeDriverDir>$(ArtifactsBinDir)chromedriver\</ChromeDriverDir> | ||
|
||
<!-- Download all.json to get latest chrome versions, only if the last all.json | ||
is more than 3 days old --> | ||
<ChromeVersionCheckThresholdDays>3</ChromeVersionCheckThresholdDays> | ||
|
||
<FirefoxDir>$(ArtifactsBinDir)firefox\</FirefoxDir> | ||
<FirefoxStampFile>$([MSBuild]::NormalizePath($(FirefoxDir), '.install-firefox-$(FirefoxRevision).stamp'))</FirefoxStampFile> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(BrowserHost)' != 'windows'"> | ||
<ChromiumRevision>972765</ChromiumRevision> | ||
<ChromiumUrl>https://storage.googleapis.com/chromium-browser-snapshots/Linux_x64/$(ChromiumRevision)/chrome-linux.zip</ChromiumUrl> | ||
<ChromeDriverUrl>https://storage.googleapis.com/chromium-browser-snapshots/Linux_x64/$(ChromiumRevision)/chromedriver_linux64.zip</ChromeDriverUrl> | ||
<ChromiumDirName>chrome-linux</ChromiumDirName> | ||
<ChromeDriverDirName>chromedriver_linux64</ChromeDriverDirName> | ||
<ChromiumBinaryName>chrome</ChromiumBinaryName> | ||
<FirefoxRevision>97.0.1</FirefoxRevision> | ||
<FirefoxUrl>https://ftp.mozilla.org/pub/firefox/releases/$(FirefoxRevision)/linux-x86_64/en-US/firefox-$(FirefoxRevision).tar.bz2</FirefoxUrl> | ||
<FirefoxBinaryName>firefox</FirefoxBinaryName> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(BrowserHost)' == 'windows'"> | ||
<ChromiumRevision>972766</ChromiumRevision> | ||
<ChromiumUrl>https://storage.googleapis.com/chromium-browser-snapshots/Win_x64/$(ChromiumRevision)/chrome-win.zip</ChromiumUrl> | ||
<ChromeDriverUrl>https://storage.googleapis.com/chromium-browser-snapshots/Win_x64/$(ChromiumRevision)/chromedriver_win32.zip</ChromeDriverUrl> | ||
<ChromiumDirName>chrome-win</ChromiumDirName> | ||
<ChromeDriverDirName>chromedriver_win32</ChromeDriverDirName> | ||
<ChromiumBinaryName>chrome.exe</ChromiumBinaryName> | ||
</PropertyGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.