Update OrangeFox-OFRP.yml #12
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: OrangeFox [OFRP] | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
MANIFEST_BRANCH: | ||
description: 'OrangeFox Manifest Branch' | ||
required: true | ||
default: '12.1' | ||
type: choice | ||
options: | ||
- 12.1 | ||
- 11.0 | ||
DEVICE_TREE: | ||
description: 'Custom Recovery Tree' | ||
required: true | ||
default: 'https://github.com/<username>/<repo_name>' | ||
DEVICE_TREE_BRANCH: | ||
description: 'Custom Recovery Tree Branch (use master if default)' | ||
required: true | ||
default: 'your_branch_name' | ||
DEVICE_NAME: | ||
description: 'Specify your Device Codename' # As is, just like your PRODUCT_DEVICE in your device tree. | ||
required: true | ||
default: '7304X' | ||
DEVICE_PATH: | ||
description: 'Specify your Device Path (Check the DEVICE_PATH in BoardConfig.mk)' # As is, just like your DEVICE_PATH in your BoardConfig.mk | ||
required: true | ||
default: 'device/device`s_company/Codename' | ||
BUILD_TARGET: | ||
description: 'Specify your Build Target' # The image suffix will be added later in build step. | ||
required: true | ||
default: 'recovery' | ||
type: choice | ||
options: | ||
- boot | ||
- recovery | ||
- vendorboot | ||
jobs: | ||
build: | ||
name: Build OFRP by ${{ github.actor }} | ||
runs-on: ubuntu-20.04 | ||
if: github.event.repository.owner.id == github.event.sender.id | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
ORANGEFOX_ROOT: ${{ github.workspace }}/OrangeFox/fox_${{ inputs.MANIFEST_BRANCH }} | ||
OUTPUT_DIR: ${{ github.workspace }}/OrangeFox/fox_${{ inputs.MANIFEST_BRANCH }}/out/target/product/${{ inputs.DEVICE_NAME }} | ||
permissions: | ||
contents: write | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Clean-up | ||
uses: rokibhasansagar/slimhub_actions@main | ||
- name: Swap Space | ||
uses: pierotofy/set-swap-space@master | ||
with: | ||
swap-size-gb: 12 | ||
- name: Build Environment | ||
run: | | ||
sudo apt install aria2 -y | ||
git clone https://gitlab.com/OrangeFox/misc/scripts.git | ||
cd scripts | ||
sudo bash setup/android_build_env.sh | ||
- name: Setup ccache | ||
uses: hendrikmuhs/[email protected] | ||
with: | ||
max-size: "10G" | ||
- name: Set-up Manifest # For github workspace use single {} | ||
run: | | ||
mkdir -p ${GITHUB_WORKSPACE}/OrangeFox | ||
cd ${GITHUB_WORKSPACE}/OrangeFox | ||
git config --global user.name "${{ github.actor }}" | ||
git config --global user.email "${{ github.actor_id }}+${{ github.actor }}@users.noreply.github.com" | ||
git clone https://gitlab.com/OrangeFox/sync.git -b master | ||
cd sync | ||
./orangefox_sync.sh --branch ${{ inputs.MANIFEST_BRANCH }} --path ${GITHUB_WORKSPACE}/OrangeFox/fox_${{ inputs.MANIFEST_BRANCH }} | ||
- name: Clone Device Tree | ||
run: | | ||
cd ${{ env.ORANGEFOX_ROOT }} | ||
git clone ${{ inputs.DEVICE_TREE }} -b ${{ inputs.DEVICE_TREE_BRANCH }} ./${{ inputs.DEVICE_PATH }} | ||
cd ${{ inputs.DEVICE_PATH }} | ||
echo "COMMIT_ID=$(git rev-parse HEAD)" >> $GITHUB_ENV | ||
- name: Building OrangeFox | ||
run: | | ||
pushd ${{ env.ORANGEFOX_ROOT }} | ||
set +e | ||
export USE_CCACHE=1 | ||
export CCACHE_EXEC=/usr/bin/ccache | ||
sed -i 's/return sandboxConfig\.working/return false/g' build/soong/ui/build/sandbox_linux.go | ||
source build/envsetup.sh | ||
export ALLOW_MISSING_DEPENDENCIES=true | ||
set -e | ||
lunch twrp_${{ inputs.DEVICE_NAME }}-eng && make clean && mka adbd ${{ inputs.BUILD_TARGET }}image | ||
popd | ||
- name: Set Build Date # Build date in UTC | ||
run: | | ||
echo "BUILD_DATE=$(TZ=UTC date +%Y%m%d)" >> $GITHUB_ENV | ||
- name: Check if the recovery exists # It makes the recovery.img and renames it to Orangefox*.img but the OG should also work | ||
if: always() | ||
run: | | ||
img_file=$(find "${{ env.OUTPUT_DIR }}" -name "${{ inputs.BUILD_TARGET }}*.img" -print -quit) | ||
zip_file=$(find "${{ env.OUTPUT_DIR }}" -name "OrangeFox*.zip" -print -quit) | ||
if [ -f "$img_file" ]; then | ||
echo "CHECK_IMG_IS_OK=true" >> $GITHUB_ENV | ||
echo "MD5_IMG=$(md5sum "$img_file" | cut -d ' ' -f 1)" >> $GITHUB_ENV | ||
else | ||
echo "Recovery out directory is empty." | ||
fi | ||
if [ -f "$zip_file" ]; then | ||
echo "CHECK_ZIP_IS_OK=true" >> $GITHUB_ENV | ||
echo "MD5_ZIP=$(md5sum "$zip_file" | cut -d ' ' -f 1)" >> $GITHUB_ENV | ||
else | ||
echo "::warning::The zip file isn't present but make sure the image is from only after 100% completion in build stage" | ||
fi | ||
- name: Upload to Release | ||
if: env.CHECK_IMG_IS_OK == 'true' | ||
uses: softprops/action-gh-release@master | ||
with: | ||
files: | | ||
${{ env.OUTPUT_DIR }}/OrangeFox*.img | ||
${{ env.OUTPUT_DIR }}/OrangeFox*.tar | ||
${{ env.OUTPUT_DIR }}/OrangeFox*.zip | ||
${{ env.OUTPUT_DIR }}/ramdisk-recovery.* | ||
name: Unofficial OrangeFox for ${{ inputs.DEVICE_NAME }} // ${{ env.BUILD_DATE }} | ||
tag_name: ${{ github.run_id }} | ||
body: | | ||
Build: ${{ inputs.MANIFEST_BRANCH }} | ||
Device: [Device Tree/Branch](${{ inputs.DEVICE_TREE }}/tree/${{ inputs.DEVICE_TREE_BRANCH }}) | ||
Commit: Most recent [commit](${{ inputs.DEVICE_TREE }}/commit/${{ env.COMMIT_ID }}) during building. | ||
MD5 (img): ${{ env.MD5_IMG }} | ||
MD5 (zip): ${{ env.MD5_ZIP }} | ||
name: SkyHawk [SHRP] | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
MANIFEST: | ||
description: 'SHRP Manifest' | ||
required: true | ||
default: 'https://github.com/SHRP/manifest.git' | ||
MANIFEST_BRANCH: | ||
description: 'SHRP Manifest Branch' | ||
required: true | ||
default: '' | ||
type: choice | ||
options: | ||
- shrp-12.1 | ||
- v3_9.0 | ||
- v3_10.0 | ||
- v3_11.0 | ||
DEVICE_TREE: | ||
description: 'Custom Recovery Tree' # Your already made Device Tree for TWRP | ||
required: true | ||
default: 'https://github.com/mlm-games/twrp_lenovo_7305x_m7_mt8765_P' | ||
DEVICE_TREE_BRANCH: | ||
description: 'Custom Recovery Tree Branch' # Your Device Tree Branch, make sure it's right. | ||
required: true | ||
default: 'shrp-9.0' | ||
DEVICE_PATH: | ||
description: 'Specify your Device Path' # As is, just like your DEVICE_PATH in your BoardConfig.mk | ||
required: true | ||
default: 'device/lenovo/mt8765_P' | ||
DEVICE_NAME: | ||
description: 'Specify your Device Codename' # As is, just like your PRODUCT_DEVICE in your device tree. | ||
required: true | ||
default: 'mt8765_P' | ||
BUILD_TARGET: | ||
description: 'Specify your Build Target' # Pick among boot, recovery and vendor_boot | ||
required: true | ||
default: 'recovery' | ||
type: choice | ||
options: | ||
- boot | ||
- recovery | ||
- vendorboot | ||
LDCHECK: | ||
description: 'Use LDCHECK' | ||
required: false | ||
default: 'false' | ||
type: boolean | ||
LDCHECKPATH: | ||
description: 'Path of blobs to check' # Use it know what kind of dependencies your missing for decryption blobs. | ||
required: true | ||
default: 'system/bin/qseecomd' | ||
jobs: | ||
build: | ||
name: Build SHRP by ${{ github.actor }} | ||
runs-on: ubuntu-20.04 | ||
if: github.event.repository.owner.id == github.event.sender.id | ||
env: | ||
OUTPUT_DIR: android-recovery/out/target/product | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
permissions: | ||
contents: write | ||
steps: | ||
- name: Check Out | ||
uses: actions/checkout@v4 | ||
- name: Display Inputs | ||
run: | | ||
echo "Displaying variables/inputs." | ||
echo "Manifest Branch: ${{ inputs.MANIFEST_BRANCH }}" | ||
echo "Device Tree: ${{ inputs.DEVICE_TREE }}" | ||
echo "Device Branch: ${{ inputs.DEVICE_TREE_BRANCH }}" | ||
echo "Build Target: ${{ inputs.BUILD_TARGET }}image" | ||
- name: Cleanup | ||
uses: rokibhasansagar/slimhub_actions@main | ||
- name: Set Swap Space | ||
uses: pierotofy/set-swap-space@master | ||
with: | ||
swap-size-gb: 12 | ||
- name: Check Manifest Branch | ||
run: | | ||
if [ ${{ inputs.MANIFEST_BRANCH }} == 'v3_11.0' ] || [ ${{ inputs.MANIFEST_BRANCH }} == 'shrp-12.1' ]; then | ||
echo "CHECK_LEGACY_BRANCH=false" >> $GITHUB_ENV | ||
else | ||
echo "CHECK_LEGACY_BRANCH=true" >> $GITHUB_ENV | ||
fi | ||
- name: Prepare the environment | ||
run: | | ||
sudo apt update && sudo apt -y upgrade && sudo apt -y install gperf gcc-multilib gcc-10-multilib g++-multilib g++-10-multilib libc6-dev lib32ncurses5-dev x11proto-core-dev libx11-dev tree lib32z-dev libgl1-mesa-dev libxml2-utils xsltproc bc ccache lib32readline-dev lib32z1-dev liblz4-tool libncurses5-dev libsdl1.2-dev libwxgtk3.0-gtk3-dev libxml2 lzop pngcrush schedtool squashfs-tools imagemagick libbz2-dev lzma ncftp qemu-user-static libstdc++-10-dev libtinfo5 libgflags-dev libncurses5 python3 | ||
- name: Setup ccache | ||
uses: hendrikmuhs/[email protected] | ||
with: | ||
max-size: "10G" | ||
- name: Install OpenJDK | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'zulu' | ||
java-version: '8' | ||
- name: Install Git-Repo | ||
run: | | ||
mkdir ~/bin | ||
curl https://storage.googleapis.com/git-repo-downloads/repo > ~/bin/repo | ||
chmod a+x ~/bin/repo | ||
sudo ln -sf ~/bin/repo /usr/bin/repo | ||
- name: Initialize Repo | ||
run: | | ||
mkdir android-recovery | ||
cd android-recovery | ||
git config --global user.name "${{ github.actor }}" | ||
git config --global user.email "${{ github.actor_id }}+${{ github.actor }}@users.noreply.github.com" | ||
repo init --depth=1 -u ${{ inputs.MANIFEST }} -b ${{ inputs.MANIFEST_BRANCH }} | ||
- name: Repo Sync | ||
run: | | ||
cd android-recovery | ||
repo sync -j$(nproc --all) --force-sync --no-clone-bundle --no-tags | ||
- name: Clone Device Tree | ||
run: | | ||
cd android-recovery | ||
git clone ${{ inputs.DEVICE_TREE }} -b ${{ inputs.DEVICE_TREE_BRANCH }} ./${{ inputs.DEVICE_PATH }} | ||
cd ${{ inputs.DEVICE_PATH }} | ||
echo "COMMIT_ID=$(git rev-parse HEAD)" >> $GITHUB_ENV | ||
- name: Check Build Makefile | ||
run: | | ||
cd android-recovery | ||
if [ -f ${{ inputs.DEVICE_PATH }}/twrp_${{ inputs.DEVICE_NAME}}.mk ]; then | ||
echo "DEVICE_MAKEFILE=twrp_${{ inputs.DEVICE_NAME }}" >> $GITHUB_ENV | ||
elif [ -f ${{ inputs.DEVICE_PATH }}/omni_${{ inputs.DEVICE_NAME}}.mk ]; then | ||
echo "DEVICE_MAKEFILE=omni_${{ inputs.DEVICE_NAME }}" >> $GITHUB_ENV | ||
else | ||
echo "No recovery makefile file found!" | ||
fi | ||
continue-on-error: true | ||
- name: Installing python2 for legacy builds | ||
if: env.CHECK_LEGACY_BRANCH == 'true' | ||
run: | | ||
sudo apt-get install python2 python-is-python2 | ||
- name: Building SkyHawk | ||
run: | | ||
cd android-recovery | ||
source build/envsetup.sh | ||
export ALLOW_MISSING_DEPENDENCIES=true | ||
lunch ${{ env.DEVICE_MAKEFILE }}-eng && make clean && mka ${{ inputs.BUILD_TARGET }}image -j$(nproc --all) | ||
echo "Done building your ${{ inputs.BUILD_TARGET }}.img" | ||
- name: Check if the recovery exists | ||
if: always() | ||
run: | | ||
img_file=$(find "${{ env.OUTPUT_DIR }}" -name "${{ inputs.BUILD_TARGET }}*.img" -print -quit) | ||
zip_file=$(find "${{ env.OUTPUT_DIR }}" -name "pbrp*.zip" -print -quit) | ||
if [ -f "$img_file" ]; then | ||
echo "CHECK_IMG_IS_OK=true" >> $GITHUB_ENV | ||
echo "MD5_IMG=$(md5sum "$img_file" | cut -d ' ' -f 1)" >> $GITHUB_ENV | ||
else | ||
echo "Recovery out directory is empty." | ||
fi | ||
if [ -f "$zip_file" ]; then | ||
echo "CHECK_ZIP_IS_OK=true" >> $GITHUB_ENV | ||
echo "MD5_ZIP=$(md5sum "$zip_file" | cut -d ' ' -f 1)" >> $GITHUB_ENV | ||
else | ||
echo "::warning::The zip file isn't present but make sure the image is from only after 100% completion in build stage" | ||
fi | ||
- name: Set Build Date # Output will be use in Release | ||
run: | | ||
echo "BUILD_DATE=$(date +%Y%m%d)" >> $GITHUB_ENV | ||
- name: Upload to Release | ||
if: always() && env.CHECK_IMG_IS_OK == 'true' | ||
uses: softprops/action-gh-release@master | ||
with: | ||
files: | | ||
${{ env.OUTPUT_DIR }}/${{ inputs.DEVICE_NAME }}/${{ inputs.BUILD_TARGET }}.img | ||
${{ env.OUTPUT_DIR }}/${{ inputs.DEVICE_NAME }}/SHRP*.zip | ||
${{ env.OUTPUT_DIR }}/${{ inputs.DEVICE_NAME }}/ramdisk*.* | ||
name: Unofficial SHRP For ${{ inputs.DEVICE_NAME }} // ${{ env.BUILD_DATE }} | ||
tag_name: ${{ github.run_id }} | ||
body: | | ||
Build: ${{ env.MANIFEST_BRANCH }} | ||
Device: [Device Tree/Branch](${{ inputs.DEVICE_TREE }}/tree/${{ inputs.DEVICE_TREE_BRANCH }}) | ||
Commit: Most recent [commit](${{ inputs.DEVICE_TREE }}/commit/${{ env.COMMIT_ID }}) during building. | ||
- name: Run LDCheck | ||
if: inputs.LDCHECK == 'true' | ||
run: | | ||
cd tools | ||
mv -n libneeds ${GITHUB_WORKSPACE}/${{OUTPUT_DIR}}/${{ inputs.DEVICE_NAME }}/recovery/root/ | ||
mv -n ldcheck ${GITHUB_WORKSPACE}/${{OUTPUT_DIR}}/${{ inputs.DEVICE_NAME }}/recovery/root/ | ||
cd ${GITHUB_WORKSPACE}/${{OUTPUT_DIR}}/${{ inputs.DEVICE_NAME }}/recovery/root | ||
python3 ldcheck -p system/lib64:vendor/lib64:system/lib:vendor/lib -d ${{ inputs.LDCHECKPATH }} | ||
echo "Done checking missing dependencies. Review, and reconfigure your tree." | ||
continue-on-error: true |