blob: 8b35a1d2ad604052375c85d4aaf9b58f6b9ce5ae [file] [log] [blame]
Alex Buynytskyye5aeeb92022-11-22 14:39:41 +00001#!/bin/bash
2# Continuous Integration script for *-finalization-1 branches.
3# Reverts previous finalization script commits and runs local build.
4
Alex Buynytskyy55de6632022-11-30 21:44:29 +00005set -ex
6
Alex Buynytskyye5aeeb92022-11-22 14:39:41 +00007function finalize_step_1_main() {
8 local top="$(dirname "$0")"/../..
9 local m="$top/build/soong/soong_ui.bash --make-mode TARGET_PRODUCT=aosp_arm64 TARGET_BUILD_VARIANT=userdebug"
10
Alex Buynytskyye5aeeb92022-11-22 14:39:41 +000011 # vndk etc finalization
12 source $top/build/make/finalize-aidl-vndk-sdk-resources.sh
13
14 # build to confirm everything is OK
15 AIDL_FROZEN_REL=true $m
16}
17
18finalize_step_1_main