Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5fe439ee authored by Steven Moreland's avatar Steven Moreland
Browse files

finalization: remove 'update' scripts

alexbuy@ said:

    please remove both update-* scripts. they were part of r&d project
    that was never finished

Ignore-AOSP-First: b/304316873#comment10

Bug: 314010935
Test: N/A
Change-Id: Iecc22cc860ba67fec336adb0c5b93f51677dc9ce
parent 123f1b02
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -6,9 +6,7 @@ This folder contains automation and CI scripts for [finalizing](https://go/andro
2. [Finalize SDK](./finalize-aidl-vndk-sdk-resources.sh). Prepare the branch for SDK release. SDK contains Android Java APIs and other stable APIs. Commonly referred as a 1st step.
3. [Finalize Android](./finalize-sdk-rel.sh). Mark branch as "REL", i.e. prepares for Android release. Any signed build containing these changes will be considered an official Android Release. Referred as a 2nd finalization step.
4. [Finalize SDK and submit](./step-1.sh). Do [Finalize SDK](./finalize-aidl-vndk-sdk-resources.sh) step, create CLs, organize them into topic and send to Gerrit.
  a. [Update SDK and submit](./update-step-1.sh). Same as above, but updates the existings CLs.
5. [Finalize Android and submit](./step-2.sh). Do [Finalize Android](./finalize-sdk-rel.sh) step, create  CLs, organize them into topic and send to Gerrit.
  a. [Update Android and submit](./update-step-2.sh). Same as above, but updates the existings CLs.

## CI:
Performed in build targets in Finalization branches.
+0 −39
Original line number Diff line number Diff line
#!/bin/bash
# Script to perform a 1st step of Android Finalization: API/SDK finalization, update CLs and upload to Gerrit.

# WIP, does not work yet
exit 10

set -ex

function update_step_1_changes() {
    set +e
    repo forall -c '\
        if [[ $(git status --short) ]]; then
            git stash -u ;
            repo start "$FINAL_PLATFORM_CODENAME-SDK-Finalization" ;
            git stash pop ;
            git add -A . ;
            git commit --amend --no-edit ;
            repo upload --cbr --no-verify -o nokeycheck -t -y . ;
        fi'
}

function update_step_1_main() {
    local top="$(dirname "$0")"/../../../..
    source $top/build/make/tools/finalization/environment.sh


    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/tools/finalization/finalize-aidl-vndk-sdk-resources.sh

    # update existing CLs and upload to gerrit
    update_step_1_changes

    # build to confirm everything is OK
    AIDL_FROZEN_REL=true $m
}

update_step_1_main
+0 −38
Original line number Diff line number Diff line
#!/bin/bash
# Script to perform a 2nd step of Android Finalization: REL finalization, create CLs and upload to Gerrit.

# WIP, does not work yet
exit 10

set -ex

function update_step_2_changes() {
    set +e
    repo forall -c '\
        if [[ $(git status --short) ]]; then
            git stash -u ;
            repo start "$FINAL_PLATFORM_CODENAME-SDK-Finalization-Rel" ;
            git stash pop ;
            git add -A . ;
            git commit --amend --no-edit ;
            repo upload --cbr --no-verify -o nokeycheck -t -y . ;
        fi'
}

function update_step_2_main() {
    local top="$(dirname "$0")"/../../../..
    source $top/build/make/tools/finalization/environment.sh

    local m="$top/build/soong/soong_ui.bash --make-mode TARGET_PRODUCT=aosp_arm64 TARGET_BUILD_VARIANT=userdebug"

    # prebuilts etc
    source $top/build/make/tools/finalization/finalize-sdk-rel.sh

    # move all changes to finalization branch/topic and upload to gerrit
    update_step_2_changes

    # build to confirm everything is OK
    AIDL_FROZEN_REL=true $m
}

update_step_2_main