This guide shows how to make a new Perfetto SDK release.
First, check out the code:
git clone https://android.googlesource.com/platform/external/perfetto cd perfetto
Next, decide the version number for the new release (vX.Y). In general minor updates should increment the minor version number (Y) while larger, more significant behavioral changes should be reflected in the major version number (X).
Continue with the appropriate section below.
Create a release branch for the new major version (“5.x” here) and merge in the code for the new release:
git fetch origin git push origin origin/master:refs/heads/releases/v5.x git fetch origin git checkout -b releases/v5.x -t origin/master git merge <sha1>
Continue with building the release.
Check out the existing release branch (“4.x” here) and merge in the desired revision for the new release, resolving any conflicts you may encounter.
git checkout -b releases/v4.x -t origin/releases/v4.x
If you only want to introduce one or two patches in the new release, consider cherry-picking them individually:
git cherry-pick <sha1>
Otherwise, you can do a full merge:
git merge <sha1>
tools/gen_amalgamated --output sdk/perfetto git add sdk/perfetto.{cc,h} git commit -m "Amalgamated source for vX.Y"
cd examples/sdk cmake -B build cmake --build build
git cl upload --no-squash
If you get an error about a missing Change-Id field (remote: ERROR: commit a7c7c4c: missing Change-Id in message footer
), install the commit-msg hook script and amend the change to make sure that field is present:
curl -Lo .git/hooks/commit-msg http://android-review.googlesource.com/tools/hooks/commit-msg chmod u+x .git/hooks/commit-msg git commit --amend
git tag -a -m "Perfetto vX.Y" vX.Y git push origin vX.Y
Update the documentation to point to the latest release.
Phew, you're done!