Explorar o código

ci: add POCO variant for testing

TheWildJames hai 7 meses
pai
achega
374d135ec8
Modificáronse 2 ficheiros con 14 adicións e 0 borrados
  1. 9 0
      .github/workflows/build.yml
  2. 5 0
      .github/workflows/kernel-custom.yml

+ 9 - 0
.github/workflows/build.yml

@@ -47,6 +47,7 @@ jobs:
               inputs.variant == 'TheWildJamesTest' && '["TheWildJamesTest"]' ||
               inputs.variant == 'MarionKernel' && '["MarionKernel"]' ||
               inputs.variant == 'Hakan' && '["Hakan"]' ||
+              inputs.variant == 'POCO' && '["POCO"]' ||
               (inputs.build_bypass && '["Normal","Bypass"]' || '["Normal"]')
             )
           }}
@@ -575,6 +576,14 @@ jobs:
         echo "Contents of ${{ env.DEFCONFIG }}:"
         cat "${{ env.DEFCONFIG }}"
 
+    - name: Configure Kernel Options
+      working-directory: ${{ env.KERNEL_ROOT }}
+      run: |
+        cat >> "${{ env.DEFCONFIG }}" << 'EOF'
+        # KernelSU Configuration
+        # CONFIG_MODULE_SIG_PROTECT is not set
+        EOF
+        
     - name: Configure Audio Modules
       if: inputs.variant == 'Hakan'
       working-directory: ${{ env.KERNEL_ROOT }}

+ 5 - 0
.github/workflows/kernel-custom.yml

@@ -43,6 +43,11 @@ jobs:
           sub_level: "128"
           os_patch_level: "2025-03"
           variant: "Hakan"
+        - android_version: "android14"
+          kernel_version: "6.1"
+          ub_level: "68"
+          os_patch_level: "2024-03"
+          variant: "POCO"
 
     uses: ./.github/workflows/build.yml
     secrets: inherit