Files
build/finalize_branch_for_release.sh
Steven Moreland 392499bd75 finalize_branch_for_release.sh: works w/ VNDK
When the freeze adds new libraries to the VNDK, we also need to
update the VNDK script.

Bug: 190577319
Test: run script on internal branch
Change-Id: I6f0ab177df5027ced0c4e198bb8a908da088eb85
2022-04-23 01:53:35 +00:00

30 lines
689 B
Bash
Executable File

#!/bin/bash
set -e
source "$(dirname "$0")"/envsetup.sh
# default target to modify tree and build SDK
lunch aosp_arm64-userdebug
set -x
# This script is WIP and only finalizes part of the Android branch for release.
# The full process can be found at (INTERNAL) go/android-sdk-finalization.
# VNDK snapshot (TODO)
# SDK snapshots (TODO)
# Update references in the codebase to new API version (TODO)
# ...
AIDL_TRANSITIVE_FREEZE=true m aidl-freeze-api
m check-vndk-list || update-vndk-list.sh # for new versions of AIDL interfaces
# TODO(b/229413853): test while simulating 'rel' for more requirements AIDL_FROZEN_REL=true
m # test build
# Build SDK (TODO)
# lunch sdk...
# m ...