Skip to content

Commit

Permalink
[Azure Pipelines] fix Firefox Nightly cask URL (#45985)
Browse files Browse the repository at this point in the history
This broke with Homebrew/homebrew-cask-versions#20196.

Also update click_iframe_crossorigin.sub.html.ini for failing test.
  • Loading branch information
foolip authored Apr 30, 2024
1 parent bd682c9 commit 6b6b2e5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
[TestDriver click on a document in an iframe]
expected:
if product == "chrome": [PASS, FAIL] # https://github.com/web-platform-tests/wpt/issues/26295
if os == "mac" and product == "firefox": [PASS, FAIL] # https://github.com/web-platform-tests/wpt/issues/45987
2 changes: 1 addition & 1 deletion tools/ci/azure/install_chrome.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
steps:
# The conflicting google-chrome and chromedriver casks are first uninstalled.
# The raw google-chrome-dev cask URL is used to bypass caching.
# The raw google-chrome@dev.rb cask URL is used to bypass caching.
- script: |
set -eux -o pipefail
HOMEBREW_NO_AUTO_UPDATE=1 brew uninstall --cask google-chrome || true
Expand Down
7 changes: 3 additions & 4 deletions tools/ci/azure/install_firefox.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
steps:
# This is equivalent to `Homebrew/homebrew-cask-versions/firefox-nightly`,
# but the raw URL is used to bypass caching.
# The raw [email protected] cask URL is used to bypass caching.
- script: |
set -eux -o pipefail
curl https://raw.githubusercontent.com/Homebrew/homebrew-cask-versions/master/Casks/firefox-nightly.rb > firefox-nightly.rb
HOMEBREW_NO_AUTO_UPDATE=1 brew install --cask firefox-nightly.rb
curl https://raw.githubusercontent.com/Homebrew/homebrew-cask/HEAD/Casks/f/firefox@nightly.rb > firefox@nightly.rb
HOMEBREW_NO_AUTO_UPDATE=1 brew install --cask firefox@nightly.rb
displayName: 'Install Firefox Nightly'
condition: and(succeeded(), eq(variables['Agent.OS'], 'Darwin'))

0 comments on commit 6b6b2e5

Please sign in to comment.