Alex Buynytskyy | e5aeeb9 | 2022-11-22 14:39:41 +0000 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | # Continuous Integration script for *-finalization-1 branches. |
| 3 | # Reverts previous finalization script commits and runs local build. |
| 4 | |
Alex Buynytskyy | 55de663 | 2022-11-30 21:44:29 +0000 | [diff] [blame] | 5 | set -ex |
| 6 | |
Alex Buynytskyy | e5aeeb9 | 2022-11-22 14:39:41 +0000 | [diff] [blame] | 7 | function 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 Buynytskyy | e5aeeb9 | 2022-11-22 14:39:41 +0000 | [diff] [blame] | 11 | # 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 | |
| 18 | finalize_step_1_main |