5837cc2efe
Bug: 260755259 Test: run locally Change-Id: I26346f917b78d1c14b2248bae44626d7544b7a58
18 lines
525 B
Bash
Executable file
18 lines
525 B
Bash
Executable file
#!/bin/bash
|
|
# Continuous Integration script for *-finalization-1 branches.
|
|
# Reverts previous finalization script commits and runs local build.
|
|
|
|
set -ex
|
|
|
|
function finalize_step_1_main() {
|
|
local top="$(dirname "$0")"/../..
|
|
local m="$top/build/soong/soong_ui.bash --make-mode TARGET_PRODUCT=aosp_arm64 TARGET_BUILD_VARIANT=userdebug"
|
|
|
|
# vndk etc finalization
|
|
source $top/build/make/finalize-aidl-vndk-sdk-resources.sh
|
|
|
|
# build to confirm everything is OK
|
|
AIDL_FROZEN_REL=true $m
|
|
}
|
|
|
|
finalize_step_1_main
|