platform_build/finalize_branch_for_release.sh
Steven Moreland 12071ac571 finalize_branch_for_release.sh rel to root
Bug: 228979367
Test: run script from root
Change-Id: I0a5cfd4873ccf49fd53be745d61005e821bfa80d
2022-04-21 22:43:54 +00:00

27 lines
609 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
# TODO(b/229413853): test while simulating 'rel' for more requirements AIDL_FROZEN_REL=true
m # test build
# Build SDK (TODO)
# lunch sdk...
# m ...