commit | 4576977c6224b122b789fcbee28cfc85e785c1df | [log] [tgz] |
---|---|---|
author | Dan Albert <[email protected]> | Thu Sep 21 00:22:23 2023 +0000 |
committer | Dan Albert <[email protected]> | Fri Sep 29 19:16:27 2023 +0000 |
tree | 5343a138ed8d4cdd0202c66cae4d94bd04139128 | |
parent | 72266da4be1831bb26df3c8364a05ea3a2ac99b6 [diff] |
Update README and pyproject.toml. I had meant to squash this into my original CL, but apparently forgot to do that before it merged. The README changes are just elaboration. The pyproject.toml changes remove things that are not used. Test: make check Bug: None Change-Id: Id47e2a8dcbf15ccb2f228652e7d7f0335d637309
This directory contains the prebuilt binaries for rr. These binaries come from aosp-rr-dev. See toolchain/rr/android/README.md for information about how to build and update that project.
To update the prebuilt binaries in this directory to a newer version from ci.android.com, run:
$ ./update.sh $BUILD_ID
$BUILD_ID
is optional. If omitted, the latest completed build will be used.
The development environment is managed using Poetry. If you need to make a non-trivial change you will want to install that so you can run the linters, formatters, and tests. Once installed, run poetry install
in this directory to install the development dependencies.
Run the type checker and linter with make lint
.
Auto-format the code with make format
.
Run the tests with make test
Run all of the above with make check
or just make
.
New dependencies can be added with poetry add <name>
or removed with poetry add <name>
. Updating a dependency to a newer version is also done with poetry add
.
Whenever dependencies are updated, run poetry export --without-hashes --output requirements.txt
to update the requirements.txt file. That file is used by update.sh so poetry is only needed by developers of update.py, not callers. Note that poetry does not generate the correct output for the local fetchartifact dependency, so after running export, you'll need to manually fix that line.