Ver Fonte

ci(workflows): extend glibc 2.38 compatibility fix to android13-5.15

The fix was previously only applied to android13-5.10 kernels with sub_level <= 186. Now it also applies to android13-5.15 kernels with sub_level <= 119 to ensure compatibility across more configurations.
TheWildJames há 11 meses atrás
pai
commit
b7b7d8daec
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      .github/workflows/build.yml

+ 1 - 1
.github/workflows/build.yml

@@ -154,7 +154,7 @@ jobs:
           fi
 
       - name: Apply glibc 2.38 Compatibility Fix
-        if: inputs.android_version == 'android13' && inputs.kernel_version == '5.10' && inputs.sub_level <= 186
+        if: (inputs.android_version == 'android13' && inputs.kernel_version == '5.10' && inputs.sub_level <= 186) || (inputs.android_version == 'android13' && inputs.kernel_version == '5.15' && inputs.sub_level <= 119)
         run: |
           GLIBC_VERSION=$(ldd --version 2>/dev/null | head -n 1 | awk '{print $NF}') 
           if [ "$(printf '%s\n' "2.38" "$GLIBC_VERSION" | sort -V | head -n1)" = "2.38" ]; then