platform_build/finalize_branch_for_release.sh
Jeongik Cha 26e9dd30a4 Remove -j1 for aidl-freeze-api
Because bpmodify is safe in multi-process env.

Bug: 190577319
Bug: 229413853
Test: aidl-freeze-api
Change-Id: Ie47afc25e2259bbcbbff50f98fa9d36887558d27
2022-05-11 01:25:19 +00:00

30 lines
770 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
# for now, we simulate the release state for AIDL, but in the future, we would want
# to actually turn the branch into the REL state and test with that
AIDL_FROZEN_REL=true m # test build
# Build SDK (TODO)
# lunch sdk...
# m ...