Explorar o código

ci(workflows): narrow glibc compatibility fix condition

The fix is only needed for android14 with kernel version 6.1, not 5.15
TheWildJames hai 11 meses
pai
achega
825af1ff76
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      .github/workflows/build.yml

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

@@ -154,7 +154,7 @@ jobs:
           fi
           fi
 
 
       - name: Apply glibc 2.38 Compatibility Fix
       - name: Apply glibc 2.38 Compatibility Fix
-        if: inputs.android_version == 'android14' && (inputs.kernel_version == '5.15' || inputs.kernel_version == '6.1')
+        if: inputs.android_version == 'android14' &&  inputs.kernel_version == '6.1'
         run: |
         run: |
           if [ ! -e build/build.sh ]; then 
           if [ ! -e build/build.sh ]; then 
             GLIBC_VERSION=$(ldd --version 2>/dev/null | head -n 1 | awk '{print $NF}') 
             GLIBC_VERSION=$(ldd --version 2>/dev/null | head -n 1 | awk '{print $NF}')