2024-03-15 04:14:14 +01:00
|
|
|
#!/bin/bash
|
|
|
|
# Script to perform a dry run of step 1 of Android Finalization, create CLs and upload to Gerrit.
|
|
|
|
|
|
|
|
function commit_step_1_changes() {
|
|
|
|
repo forall -c '\
|
|
|
|
if [[ $(git status --short) ]]; then
|
|
|
|
repo start "$FINAL_PLATFORM_CODENAME-SDK-Finalization-DryRun" ;
|
|
|
|
git add -A . ;
|
|
|
|
git commit -m "$FINAL_PLATFORM_CODENAME is now $FINAL_PLATFORM_SDK_VERSION" \
|
|
|
|
-m "Ignore-AOSP-First: $FINAL_PLATFORM_CODENAME Finalization
|
|
|
|
Bug: $FINAL_BUG_ID
|
|
|
|
Test: build";
|
|
|
|
|
|
|
|
repo upload --cbr --no-verify -o nokeycheck -t -y . ;
|
|
|
|
fi'
|
|
|
|
}
|
|
|
|
|
|
|
|
function finalize_step_1_main() {
|
|
|
|
local top="$(dirname "$0")"/../../../..
|
|
|
|
source $top/build/make/tools/finalization/environment.sh
|
|
|
|
|
|
|
|
source $top/build/make/tools/finalization/finalize-sdk-resources.sh
|
|
|
|
|
|
|
|
# move all changes to finalization branch/topic and upload to gerrit
|
|
|
|
commit_step_1_changes
|
|
|
|
|
|
|
|
# build to confirm everything is OK
|
|
|
|
local m_next="$top/build/soong/soong_ui.bash --make-mode TARGET_RELEASE=next TARGET_PRODUCT=aosp_arm64 TARGET_BUILD_VARIANT=userdebug"
|
2024-04-05 17:32:38 +02:00
|
|
|
$m_next
|
2024-03-15 04:14:14 +01:00
|
|
|
|
|
|
|
local m_fina="$top/build/soong/soong_ui.bash --make-mode TARGET_RELEASE=fina_1 TARGET_PRODUCT=aosp_arm64 TARGET_BUILD_VARIANT=userdebug"
|
2024-04-05 17:32:38 +02:00
|
|
|
$m_fina
|
2024-03-15 04:14:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
finalize_step_1_main
|