Update SkyHawk-SHRP.yml

This commit is contained in:
ragebreaker 2024-08-16 06:39:14 +05:30 committed by GitHub
parent 427e92f03e
commit c76054da37
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -36,12 +36,12 @@ on:
BUILD_TARGET: BUILD_TARGET:
description: 'Specify your Build Target' # Pick among boot, recovery and vendor_boot description: 'Specify your Build Target' # Pick among boot, recovery and vendor_boot
required: true required: true
default: 'recoveryimage' default: 'recovery'
type: choice type: choice
options: options:
- bootimage - boot
- recoveryimage - recovery
- vendorbootimage - vendorboot
LDCHECK: LDCHECK:
description: 'Use LDCHECK' description: 'Use LDCHECK'
required: false required: false
@ -155,7 +155,7 @@ jobs:
cd android-recovery cd android-recovery
source build/envsetup.sh source build/envsetup.sh
export ALLOW_MISSING_DEPENDENCIES=true export ALLOW_MISSING_DEPENDENCIES=true
lunch ${{ env.DEVICE_MAKEFILE }}-eng && make clean && mka ${{ github.event.inputs.BUILD_TARGET }} -j$(nproc --all) lunch ${{ env.DEVICE_MAKEFILE }}-eng && make clean && mka ${{ github.event.inputs.BUILD_TARGET }}image -j$(nproc --all)
echo "Done building your ${{ github.event.inputs.BUILD_TARGET }}.img" echo "Done building your ${{ github.event.inputs.BUILD_TARGET }}.img"
- name: Check if the recovery exists - name: Check if the recovery exists