forked from web-platform-tests/wpt
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Azure Pipelines] fix Firefox Nightly cask URL
This broke with Homebrew/homebrew-cask-versions#20196.
- Loading branch information
Showing
2 changed files
with
4 additions
and
5 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
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')) |