commit | 737ff8b179ac109c80a11c42a40c4c157a4c078b | [log] [tgz] |
---|---|---|
author | lberki <[email protected]> | Mon Jun 07 10:25:20 2021 +0200 |
committer | GitHub <[email protected]> | Mon Jun 07 10:25:20 2021 +0200 |
tree | d5b7329bc5ac00e9f6add37758fe0b8ec01c2e15 | |
parent | e1d6ee2fab91f83f432493671a434881172c366e [diff] | |
parent | 3d1127fce4613b313bddb9186d5aa6fb3f04e362 [diff] |
Merge pull request #226 from metti/test_fixes Add diagnostic make file targets
kati is an experimental GNU make clone. The main goal of this tool is to speed-up incremental build of Android.
Currently, kati does not offer a faster build by itself. It instead converts your Makefile to a ninja file.
Building:
$ make ckati
The above command produces a ckati
binary in the project root.
Testing (best ran in a Ubuntu 18.04 environment):
$ make test $ go test --ckati $ go test --ckati --ninja $ go test --ckati --ninja --all
The above commands run all cKati and Ninja tests in the testcases/
directory.
Alternatively, you can also run the tests in a Docker container in a prepared test enviroment:
$ docker build -t kati-test . && docker run kati-test
For Android-N+, ckati and ninja is used automatically. There is a prebuilt checked in under prebuilts/build-tools that is used.
All Android's build commands (m, mmm, mmma, etc.) should just work.