mozilla 存储库中 firefox 版本的标签是什么?

What are the tags for firefox releases in mozilla's repository?

我想重新编译SpiderMonkey的源代码

可从 https://hg.mozilla.org/mozilla-central/ 访问 mercurial 存储库,但我很难理解使用哪些标签来跟踪已发布的版本。

标签是 here,但我看不出任何听起来像发行版的东西。

例如,用于编译 Firefox 65.0.2 的修订版是什么?我怎样才能确定它?

您查看的存储库有误。最终版本在 mozilla-release repository, which has per release tags, including the FIREFOX_65_0_2_RELEASE tag.

中标记

Mozilla-central 仅用于夜间发布。登陆那里的变更集会定期合并到 MozillaWiki 上的 mozilla-beta repository, and after several beta releases, when the final release is made the changes are pulled into the mozilla-release repository and tagged. See The Firefox Release Process

From mozilla-central to mozilla-release

  • Firefox Nightly is released every 12 hours with all the changes landed on mozilla-central.

  • Every 6 to 8 weeks, we merge the code from mozilla-central to our mozilla-beta branch. The mozilla-beta branch should now only get patches aimed at stabilizing the release. Any patch on mozilla-central that we want backported to our mozilla-beta branch should follow the approval rules for uplifts.

[...]

  • At the end of the Beta cycle, a final build is validated by our QA and tagged for release into the mozilla-release branch.

因为 beta 进程仅从 mozilla-central 获取特定提交到 mozilla-beta 分支,所以无法从 mozilla-central 存储库构建最终版本。