Let finalize_branch_for_release.sh create ABI dumps
Bug: 238984913 Test: build/make/finalize_branch_for_release.sh Change-Id: I0a2e2cfe33464fbe0b4d210e9936a89713059556
This commit is contained in:
parent
e8b9724200
commit
6c2353d7fd
1 changed files with 12 additions and 4 deletions
|
@ -16,15 +16,23 @@ function finalize_main() {
|
||||||
# Update references in the codebase to new API version (TODO)
|
# Update references in the codebase to new API version (TODO)
|
||||||
# ...
|
# ...
|
||||||
|
|
||||||
AIDL_TRANSITIVE_FREEZE=true $m aidl-freeze-api
|
AIDL_TRANSITIVE_FREEZE=true $m aidl-freeze-api create_reference_dumps
|
||||||
|
|
||||||
|
# Generate ABI dumps
|
||||||
|
ANDROID_BUILD_TOP="$top" \
|
||||||
|
out/host/linux-x86/bin/create_reference_dumps \
|
||||||
|
-p aosp_arm64 --build-variant user
|
||||||
|
|
||||||
# Update new versions of files. See update-vndk-list.sh (which requires envsetup.sh)
|
# Update new versions of files. See update-vndk-list.sh (which requires envsetup.sh)
|
||||||
$m check-vndk-list || \
|
$m check-vndk-list || \
|
||||||
{ cp $top/out/soong/vndk/vndk.libraries.txt $top/build/make/target/product/gsi/current.txt; }
|
{ cp $top/out/soong/vndk/vndk.libraries.txt $top/build/make/target/product/gsi/current.txt; }
|
||||||
|
|
||||||
# for now, we simulate the release state for AIDL, but in the future, we would want
|
# This command tests:
|
||||||
# to actually turn the branch into the REL state and test with that
|
# The release state for AIDL.
|
||||||
AIDL_FROZEN_REL=true $m nothing # test build
|
# ABI difference between user and userdebug builds.
|
||||||
|
# In the future, we would want to actually turn the branch into the REL
|
||||||
|
# state and test with that.
|
||||||
|
AIDL_FROZEN_REL=true $m droidcore
|
||||||
|
|
||||||
# Build SDK (TODO)
|
# Build SDK (TODO)
|
||||||
# lunch sdk...
|
# lunch sdk...
|
||||||
|
|
Loading…
Reference in a new issue