commit c80d23871d4091ca03a0745fc0c2c1ca717bb54e
parent 22afb37909a44c3cc9b9723e428ea021933e2fe1
Author: Sam Sneddon <gsnedders@apple.com>
Date: Wed, 15 Oct 2025 08:59:07 +0000
Bug 1993235 [wpt PR 55288] - Stop installing Chrome and Firefox on Azure Pipelines, a=testonly
Automatic update from web-platform-tests
Stop installing Chrome and Firefox on Azure Pipelines
I believe after https://github.com/web-platform-tests/wpt/pull/53309
we no longer require them to be installed; so let's just stop
installing them.
--
wpt-commits: 64fda61c3541507f88ecea676dd5d64e7ede3139
wpt-pr: 55288
Diffstat:
3 files changed, 0 insertions(+), 24 deletions(-)
diff --git a/testing/web-platform/tests/.azure-pipelines.yml b/testing/web-platform/tests/.azure-pipelines.yml
@@ -124,8 +124,6 @@ jobs:
- task: UsePythonVersion@0
inputs:
versionSpec: '3.8'
- - template: tools/ci/azure/install_chrome.yml
- - template: tools/ci/azure/install_firefox.yml
- template: tools/ci/azure/update_hosts.yml
- template: tools/ci/azure/update_manifest.yml
- template: tools/ci/azure/tox_pytest.yml
@@ -144,8 +142,6 @@ jobs:
- task: UsePythonVersion@0
inputs:
versionSpec: '3.13'
- - template: tools/ci/azure/install_chrome.yml
- - template: tools/ci/azure/install_firefox.yml
- template: tools/ci/azure/update_hosts.yml
- template: tools/ci/azure/update_manifest.yml
- template: tools/ci/azure/tox_pytest.yml
@@ -234,10 +230,6 @@ jobs:
- task: UsePythonVersion@0
inputs:
versionSpec: '3.8'
- # currently just using the outdated Chrome/Firefox on the VM rather than
- # figuring out how to install Chrome Dev channel on Windows
- # - template: tools/ci/azure/install_chrome.yml
- # - template: tools/ci/azure/install_firefox.yml
- template: tools/ci/azure/update_hosts.yml
- template: tools/ci/azure/update_manifest.yml
- template: tools/ci/azure/tox_pytest.yml
@@ -256,10 +248,6 @@ jobs:
- task: UsePythonVersion@0
inputs:
versionSpec: '3.13'
- # currently just using the outdated Chrome/Firefox on the VM rather than
- # figuring out how to install Chrome Dev channel on Windows
- # - template: tools/ci/azure/install_chrome.yml
- # - template: tools/ci/azure/install_firefox.yml
- template: tools/ci/azure/update_hosts.yml
- template: tools/ci/azure/update_manifest.yml
- template: tools/ci/azure/tox_pytest.yml
diff --git a/testing/web-platform/tests/tools/ci/azure/install_chrome.yml b/testing/web-platform/tests/tools/ci/azure/install_chrome.yml
@@ -1,6 +0,0 @@
-steps:
-- script: |
- set -eux -o pipefail
- HOMEBREW_NO_AUTO_UPDATE=1 brew install --cask google-chrome@dev
- displayName: 'Install Chrome Dev'
- condition: and(succeeded(), eq(variables['Agent.OS'], 'Darwin'))
diff --git a/testing/web-platform/tests/tools/ci/azure/install_firefox.yml b/testing/web-platform/tests/tools/ci/azure/install_firefox.yml
@@ -1,6 +0,0 @@
-steps:
-- script: |
- set -eux -o pipefail
- HOMEBREW_NO_AUTO_UPDATE=1 brew install --cask firefox@nightly
- displayName: 'Install Firefox Nightly'
- condition: and(succeeded(), eq(variables['Agent.OS'], 'Darwin'))