From d82ca3e16a9348ac4ca0481436a8ec085558ec92 Mon Sep 17 00:00:00 2001 From: Carlo Dandan Date: Sat, 25 Nov 2023 01:33:22 +0000 Subject: [PATCH] builder: removing support for branches below 11.0 According to DarthJabba9 of OrangeFox: * Please note that all branches lower than fox_11.0 are now considered OBSOLETE, and will no longer be supported or maintained. * As of 6 December 2022, only the fox_11.0 and fox_12.1 branches are supported. The OrangeFox sync script has been amended accordingly, and will soon be updated on gitlab. When that happens, you will no longer be able to sync any manifest lower than 11.0. * If you haven't yet updated your device trees to build with the 11.0 or 12.1 manifests, I very strongly suggest that you do so now. Signed-off-by: Carlo Dandan --- .github/workflows/OrangeFox-Compile.yml | 3 +-- README.md | 4 ++-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/OrangeFox-Compile.yml b/.github/workflows/OrangeFox-Compile.yml index 50d7be6..31300f1 100644 --- a/.github/workflows/OrangeFox-Compile.yml +++ b/.github/workflows/OrangeFox-Compile.yml @@ -17,8 +17,6 @@ on: options: - 12.1 - 11.0 - - 10.0 - - 9.0 DEVICE_TREE: description: 'Custom Recovery Tree' required: true @@ -74,6 +72,7 @@ jobs: sudo bash setup/android_build_env.sh - name: Set-up Manifest + if: github.event.inputs.MANIFEST_BRANCH == '11.0' || github.event.inputs.MANIFEST_BRANCH == '12.1' run: | mkdir -p ${GITHUB_WORKSPACE}/OrangeFox cd ${GITHUB_WORKSPACE}/OrangeFox diff --git a/README.md b/README.md index 1778885..9be56f9 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Compile your first custom recovery from OrangeFox Recovery Project using Github 1. Fork this repository. 2. Go to `Action` tab > `All workflows` > `OrangeFox - Build` > `Run workflow`, then fill all the required information: - * Manifest Branch (12.1, 11.0, etc.) + * Manifest Branch (12.1 and 11.0) * Device Tree (Your device tree repository link) * Device Tree Branch (Your device tree repository branch) * Device Name (Your device codename) @@ -13,4 +13,4 @@ Compile your first custom recovery from OrangeFox Recovery Project using Github * Build Target (boot, reecovery, vendorboot) # Note - * Initially, it only have four default choices for fox branch; 12.1, 11.0, 10.0 and 9.0. If there's more to it, feel free to modify the .yml configurations. \ No newline at end of file +This action will now only support manifest 12.1 and 11.0, since all orangefox manifest below 11.0 are considered obsolete. \ No newline at end of file