Merge "Start script to finalize branch release." am: 7a396db029
am: 969dd0f48b
Original change: https://android-review.googlesource.com/c/platform/build/+/2066080 Change-Id: Ic9f9058e8630598f3111a43de0ab994c07365e62 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
commit
767a7d9cc3
1 changed files with 27 additions and 0 deletions
27
finalize_branch_for_release.sh
Executable file
27
finalize_branch_for_release.sh
Executable file
|
@ -0,0 +1,27 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
source ../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
|
||||||
|
|
||||||
|
# TODO(b/229413853): test while simulating 'rel' for more requirements AIDL_FROZEN_REL=true
|
||||||
|
m # test build
|
||||||
|
|
||||||
|
# Build SDK (TODO)
|
||||||
|
# lunch sdk...
|
||||||
|
# m ...
|
Loading…
Reference in a new issue