Skip to content

Commit e5babd7

Browse files
committed
BrowserVersions.props
1 parent f9045bd commit e5babd7

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

.github/workflows/bump-chrome-version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
run: >-
2828
make -C src/mono/wasm build-tasks &&
2929
PATH=$PWD/.dotnet:$PATH dotnet build eng/testing/bump-chrome-version.proj -p:Configuration=Release &&
30-
git add eng/testing/ChromeVersions.props &&
30+
git add eng/testing/BrowserVersions.props &&
3131
cat eng/testing/bump-chrome-pr.env >> "$GITHUB_ENV"
3232
3333
- name: Check for changes

eng/pipelines/common/evaluate-default-paths.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ parameters:
77
_const_paths:
88
_wasm_specific_only: [
99
eng/testing/bump-chrome-version.proj
10-
eng/testing/ChromeVersions.props
10+
eng/testing/BrowserVersions.props
1111
eng/testing/WasmRunner*
1212
eng/testing/WasiRunner*
1313
eng/testing/scenarios/BuildWasiAppsJobsList.txt
@@ -58,7 +58,7 @@ parameters:
5858
]
5959
_wasm_chrome: [
6060
eng/testing/bump-chrome-version.proj
61-
eng/testing/ChromeVersions.props
61+
eng/testing/BrowserVersions.props
6262
]
6363
_perf_pipeline_specific_only: [
6464
eng/pipelines/runtime-wasm-perf.yml

eng/pipelines/runtime-wasm-perf.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ pr:
1616
- eng/pipelines/coreclr/templates/run-perf*
1717
- eng/pipelines/coreclr/templates/run-scenarios-job.yml
1818
- eng/testing/performance/*
19-
- eng/testing/ChromeVersions.props
19+
- eng/testing/BrowserVersions.props
2020

2121
variables:
2222
- template: /eng/pipelines/common/variables.yml
File renamed without changes.

eng/testing/bump-chrome-version.proj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Import Project="..\..\Directory.Build.props" />
44
<UsingTask AssemblyFile="$(WasmBuildTasksAssemblyPath)" TaskName="Microsoft.WebAssembly.Build.Tasks.UpdateChromeVersions" />
55
<PropertyGroup>
6-
<ChromeVersionsPath>$(RepositoryEngineeringDir)testing\ChromeVersions.props</ChromeVersionsPath>
6+
<ChromeVersionsPath>$(RepositoryEngineeringDir)testing\BrowserVersions.props</ChromeVersionsPath>
77
<EnvVarsForPRPath>$(RepositoryEngineeringDir)testing\bump-chrome-pr.env</EnvVarsForPRPath>
88
</PropertyGroup>
99

eng/testing/performance/performance-setup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -451,7 +451,7 @@ if [[ -n "$wasm_bundle_directory" ]]; then
451451

452452
# get required version
453453
if [[ -z "$v8_version" ]]; then
454-
v8_version=`grep linux_V8Version $source_directory/eng/testing/ChromeVersions.props | sed -e 's,.*>\([^\<]*\)<.*,\1,g' | cut -d. -f 1-3`
454+
v8_version=`grep linux_V8Version $source_directory/eng/testing/BrowserVersions.props | sed -e 's,.*>\([^\<]*\)<.*,\1,g' | cut -d. -f 1-3`
455455
echo "V8 version: $v8_version"
456456
fi
457457
if [[ -z "$javascript_engine_path" ]]; then

eng/testing/wasm-provisioning.targets

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<WasmProvisionAfterTarget Condition="'$(WasmProvisionAfterTarget)' == ''">Build</WasmProvisionAfterTarget>
2020
</PropertyGroup>
2121

22-
<Import Project="$(MSBuildThisFileDirectory)ChromeVersions.props" />
22+
<Import Project="$(MSBuildThisFileDirectory)BrowserVersions.props" />
2323

2424
<PropertyGroup Condition="'$(BrowserHost)' != 'windows'">
2525
<FirefoxUrl>https://ftp.mozilla.org/pub/firefox/releases/$(linux_FirefoxRevision)/linux-x86_64/en-US/firefox-$(linux_FirefoxRevision).tar.bz2</FirefoxUrl>
@@ -100,7 +100,7 @@
100100
<Error Condition="!$([MSBuild]::IsOSPlatform('linux')) and !$([MSBuild]::IsOSPlatform('windows'))"
101101
Text="Chrome provisioning only supported on Linux, and windows." />
102102
<Error Condition="'$(ChromeVersion)' == ''"
103-
Text="No %24(ChromeVersion) set. This can be set in eng/testing/ChromeVersions.props" />
103+
Text="No %24(ChromeVersion) set. This can be set in eng/testing/BrowserVersions.props" />
104104

105105
<RemoveDir Directories="$(ChromeDir)" />
106106

@@ -128,7 +128,7 @@
128128
<Error Condition="!$([MSBuild]::IsOSPlatform('linux')) and !$([MSBuild]::IsOSPlatform('windows'))"
129129
Text="ChromeDriver provisioning only supported on Linux, and windows." />
130130
<Error Condition="'$(ChromeVersion)' == ''"
131-
Text="No %24(ChromeVersion) set. This can be set in eng/testing/ChromeVersions.props" />
131+
Text="No %24(ChromeVersion) set. This can be set in eng/testing/BrowserVersions.props" />
132132

133133
<RemoveDir Directories="$(ChromeDriverDir)" />
134134

src/mono/browser/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -362,18 +362,18 @@ npm update --lockfile-version=1
362362

363363
Tests are run with V8, Chrome, node, and wasmtime for the various jobs.
364364

365-
- V8: the version used is from `eng/testing/ChromeVersions.props`. This is used for all the library tests, and WBT, but *not* runtime tests.
365+
- V8: the version used is from `eng/testing/BrowserVersions.props`. This is used for all the library tests, and WBT, but *not* runtime tests.
366366
- Chrome: Same as V8.
367367
- Node: fixed version from emsdk
368368
- wasmtime - fixed version in `src/mono/wasi/wasi-sdk-version.txt`.
369369

370-
### `eng/testing/ChromeVersions.props`
370+
### `eng/testing/BrowserVersions.props`
371371

372372
This file is updated once a week by a github action `.github/workflows/bump-chrome-version.yml`, and the version is obtained by `src/tasks/WasmBuildTasks/GetChromeVersions.cs` task.
373373

374374
# Perf pipeline
375375

376-
- V8 version used to run the microbenchmarks is from `eng/testing/ChromeVersions.props`
376+
- V8 version used to run the microbenchmarks is from `eng/testing/BrowserVersions.props`
377377

378378
TBD
379379

0 commit comments

Comments
 (0)