|
|
@@ -13,7 +13,7 @@ runs:
|
|
|
steps:
|
|
|
- name: 'Build Kernel'
|
|
|
shell: bash
|
|
|
- working-directory: ${{ github.workspace }}/kernel
|
|
|
+ working-directory: ${{ github.workspace }}/kernel/common
|
|
|
run: |
|
|
|
set -euo pipefail
|
|
|
if [ "${{ inputs.bypass }}" = "true" ]; then
|
|
|
@@ -34,6 +34,12 @@ runs:
|
|
|
echo "Bypass hack not applied as per input parameter."
|
|
|
fi
|
|
|
|
|
|
+ make O=/home/runner/out savedefconfig
|
|
|
+ echo "Before patching, defconfig content:"
|
|
|
+ cat arch/arm64/configs/gki_defconfig
|
|
|
+ cp /home/runner/out/defconfig arch/arm64/configs/gki_defconfig
|
|
|
+ echo "After patching, defconfig content:"
|
|
|
+ cat arch/arm64/configs/gki_defconfig
|
|
|
rm -rf /home/runner/out
|
|
|
mkdir -p /home/runner/out
|
|
|
|