Skip to content

Commit

Permalink
devops: add Firefox ubuntu 22 builds (#14579)
Browse files Browse the repository at this point in the history
  • Loading branch information
mxschmitt authored Jun 2, 2022
1 parent 82f8af3 commit 66fc04c
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 0 deletions.
26 changes: 26 additions & 0 deletions browser_patches/checkout_build_archive_upload.sh
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,19 @@ elif [[ "$BUILD_FLAVOR" == "firefox-ubuntu-20.04-arm64" ]]; then
EXPECTED_HOST_OS="Ubuntu"
EXPECTED_HOST_OS_VERSION="20.04"
BUILD_BLOB_NAME="firefox-ubuntu-20.04-arm64.zip"
elif [[ "$BUILD_FLAVOR" == "firefox-ubuntu-22.04" ]]; then
BROWSER_NAME="firefox"
EXTRA_BUILD_ARGS="--full"
EXPECTED_HOST_OS="Ubuntu"
EXPECTED_HOST_OS_VERSION="22.04"
BUILD_BLOB_NAME="firefox-ubuntu-22.04.zip"
elif [[ "$BUILD_FLAVOR" == "firefox-ubuntu-22.04-arm64" ]]; then
BROWSER_NAME="firefox"
EXTRA_BUILD_ARGS="--full --linux-arm64"
EXTRA_ARCHIVE_ARGS="--linux-arm64"
EXPECTED_HOST_OS="Ubuntu"
EXPECTED_HOST_OS_VERSION="22.04"
BUILD_BLOB_NAME="firefox-ubuntu-22.04-arm64.zip"
elif [[ "$BUILD_FLAVOR" == "firefox-mac-11" ]]; then
BROWSER_NAME="firefox"
EXTRA_BUILD_ARGS="--full"
Expand Down Expand Up @@ -255,6 +268,19 @@ elif [[ "$BUILD_FLAVOR" == "firefox-beta-ubuntu-20.04" ]]; then
EXPECTED_HOST_OS="Ubuntu"
EXPECTED_HOST_OS_VERSION="20.04"
BUILD_BLOB_NAME="firefox-beta-ubuntu-20.04.zip"
elif [[ "$BUILD_FLAVOR" == "firefox-beta-ubuntu-22.04" ]]; then
BROWSER_NAME="firefox-beta"
EXTRA_BUILD_ARGS="--full"
EXPECTED_HOST_OS="Ubuntu"
EXPECTED_HOST_OS_VERSION="22.04"
BUILD_BLOB_NAME="firefox-beta-ubuntu-22.04.zip"
elif [[ "$BUILD_FLAVOR" == "firefox-beta-ubuntu-22.04-arm64" ]]; then
BROWSER_NAME="firefox-beta"
EXTRA_BUILD_ARGS="--full --linux-arm64"
EXTRA_ARCHIVE_ARGS="--linux-arm64"
EXPECTED_HOST_OS="Ubuntu"
EXPECTED_HOST_OS_VERSION="22.04"
BUILD_BLOB_NAME="firefox-beta-ubuntu-22.04-arm64.zip"
elif [[ "$BUILD_FLAVOR" == "firefox-beta-mac-11" ]]; then
BROWSER_NAME="firefox-beta"
EXTRA_BUILD_ARGS="--full"
Expand Down
2 changes: 2 additions & 0 deletions browser_patches/firefox-beta/EXPECTED_BUILDS
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,6 @@ firefox-beta-mac-11.zip
firefox-beta-mac-11-arm64.zip
firefox-beta-ubuntu-18.04.zip
firefox-beta-ubuntu-20.04.zip
firefox-beta-ubuntu-22.04.zip
firefox-beta-ubuntu-22.04-arm64.zip
firefox-beta-win64.zip
2 changes: 2 additions & 0 deletions browser_patches/firefox/EXPECTED_BUILDS
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,6 @@ firefox-mac-11-arm64.zip
firefox-ubuntu-18.04.zip
firefox-ubuntu-20.04.zip
firefox-ubuntu-20.04-arm64.zip
firefox-ubuntu-22.04.zip
firefox-ubuntu-22.04-arm64.zip
firefox-win64.zip

0 comments on commit 66fc04c

Please sign in to comment.