Mozilla VPN Release Process#
Mozilla VPN is shipped in two parts, the client and addons.
The client is shipped on Windows, Mac and Linux, as well as Android and iOS.
Ensure you are in the #releaseduty channel in Matrix.
Windows and Mac Clients#
Windows and Mac client relases are triggered via Shipit.
Promote a Build#
You’ll receive a ping in the #releaseduty channel in Matrix asking to
“promote a build” or “push a build to candidates”. The request should include a
link to the commit they would like promoted.
Log in to Shipit.
From the
Releasesdropdown, selectSecurity -> New Release.Select
mozilla-vpn-clientas the product.Choose the release branch + commit mentioned in the request. The branch should match
releases/<version>.Create the release and navigate to
Security -> Pending Releases.Trigger the
promote-clientphase. This will run beetmover tasks that uploads the signed builds to the candidates directory on archive.mozilla.org. The builds will be under the path with the following pattern:pub/vpn/candidates/<version>-candidates/build<buildId>/Update Balrog, making sure to use the
FirefoxVPN: release-cdntestchannel.Reply in-thread that the candidate builds are ready for testing.
Ship a Build#
You’ll receive a ping in the #releaseduty channel in Matrix asking to
ship or release a build. The request should include a link to the commit they
would like promoted.
Login to Shipit.
From the
Releasesdropdown, selectSecurity -> Pending Releases.Find the corresponding release that was created for the
promote-clientphase.Trigger the
ship-clientphase. This will run a beetmover task that copies the signed builds from candidates, over to the releases directory on archive.mozilla.org.Update Balrog, making sure to use the
FirefoxVPN: releasechannel.Reply in-thread in the
#releasedutychannel that the release has been shipped on Windows and Mac.
Update Balrog#
Once the builds are on archive.mozilla.org, you’ll need to update the
FirefoxVPN: release-cdntest channel on Balrog to point at them.
Create the release. It’s usually easiest to copy/paste the previous release.
Set the release name to
FirefoxVPN-<version>.Set the channel. Use
FirefoxVPN: release-cdntestfor the candidate builds. UseFirefoxVPN: releasefor the actual release.Update the URLs.
Update the sha512 hashes, you’ll need to download the binaries and compute them manually. Make sure the files are
gunzip’ed first (downloading via browser is safe way to ensure this).Update the version in the name and version fields.
Update the default rule to point to the new release.
Required Releases#
From time to time, you may be asked to create a “required” release. This means that the client will force users to update to the newer version (normally they would have the option to ignore the update prompt). Required releases should be created in addition to the release you created in the previous step.
Create the required release by copy/pasting the previous release blob except:
Append
-Requiredto the release name (both in Balrog and in the release blob).Change the
requiredfield totrue.
Update or create the appropriate rules to point to this release. It will likely be the case that only certain platforms or version numbers will want to use this release, so be sure to work with the VPN team to determine what exactly is desired.
Addons#
Addons are shipped independently from the main client, they are akin to Firefox’s “system addons”. They live in the main repo and are not to be confused with web extensions (they use a custom format to VPN).
Addons releases are also managed via Shipit.
Promote Addons#
Login to Shipit.
From the
Releasesdropdown, selectSecurity -> New Release.Select
mozilla-vpn-addonsas the product.Choose the
mainbranch + commit mentioned in the request. Addons should always be released off of themainbranch. If a branch other thanmainis requested, please verify that this is intentional and not an oversight.Create the release and navigate to
Security -> Pending Releases.Trigger the
promote-addonsphase. This will create beetmover tasks that upload the addons plus the manifest to the addons candidates directory. The path will have a pattern like:pub/vpn/addons/candidates/<buildId>Reply in-thread that the candidate addons are ready for testing.
Warning
Addons do not use version numbers and instead use the build date as their version. Shipit is unable to handle this scenario, so will display the client version instead. Please ignore this version number for the addons, and keep a mental note of which build number in Shipit corresponds to which build date in the release tasks.
Ship Addons#
Login to Shipit.
From the
Releasesdropdown, selectSecurity -> Pending Releases.Find the corresponding release that was created for the
promote-addonsphase.Trigger the
ship-addonsphase. This will run beetmover tasks that copy the addons and signed manifest from candidates, over to the addons releases directory on archive.mozilla.org. The files will be uploaded to two locations:pub/vpn/addons/releases/<buildId>pub/vpn/addons/releases/latest
Reply in-thread in the
#releasedutychannel that the release has been shipped on Windows and Mac.
Linux Client#
The Linux client is shipped via launchpad, credentials are in Releng SOPS
under ubuntu-store.yml.
Note
For now we are still using builds generated by Github Actions, but will hopefully be switching to the Taskcluster builds shortly.
Ensure that
publishis disabled in the edit section of launchpad. This will ensure we don’t accidentally ship the builds that are uploaded immediately.Find the
Sources.zipartifact from Github Actions. Ideally this will be linked by someone from VPN but if not:Click the
Actionstab in Github.Click
PPA Automated Releasesworkflow on the left.Find the run for the
vX.Y.Ztag. (The link in the second column should be for a/tags/URL, not a/heads/URL.)Click the task and download the
Sources.zipat the bottom.
Extract the zip to a temporary directory:
$ unzip -d vpn_release Sources.zip $ cd vpn_release
Run a docker container to perform the signing:
export RELENG_GPG_KEYCHAIN=/path-to/releng-secrets-global/keys/mozillavpn-launchpad-gpg docker run --rm -it -v $(pwd):/packages -v $RELENG_GPG_KEYCHAIN:/keychain --entrypoint /bin/bash ubuntu:latest -i
When inside the container, run the following commands:
apt update && DEBIAN_FRONTEND=noninteractive apt install -y devscripts dput rsync rsync -av /keychain/ /keychain2/ export GNUPGHOME=/keychain2 cd /packages # have the passphrase at hand in keys/mozillavpn-launchpad-gpg.passphrase # for the next command for signing debsign -k Release --re-sign *.dsc *.buildinfo *.changes # delete any cached upload references that might be present # not doing this will mean dput does nothing rm *.ppa.upload dput ppa:mozillacorp/mozillavpn mozillavpn*.changes
An email will be sent by lauchpad to release+ubuntu-store@mozilla.com.
If the build fails for some reason (i.e.: GPG key rotated), and the server complains the package has already been uploaded, then
dputcan be run with-fto force the upload/override.The build should eventually show up on launchpad. You can also watch the state of the builds here.
If the builds fail without a log, it could indicate an infra issue. Retrying the build (button in launchpad) is then recommended.
Once the builds are successful, open the edit section of launchpad and check the
Publishbox. ClickSave.Wait for the release to be published. You can find the publishing status here, then go back and disable
Publishagain. You must wait for both the “Status” to read “Published” and the “Build Status” to be a green check mark before doing this.
Android and iOS Clients#
Releng is not involved with the mobile release process.