ci: properly update apt mirrors for Android target (#798)

This commit is contained in:
Benoît Cortier
2025-06-02 17:46:25 -04:00
committed by GitHub
parent 9f6647c341
commit 4a81c5d7cc
+3 -1
View File
@@ -136,7 +136,9 @@ jobs:
# > Unable to generate bindings: ClangDiagnostic("/usr/include/stdint.h:26:10: fatal error: 'bits/libc-header-start.h' file not found\n")
- name: Install gcc-multilib
if: ${{ matrix.os == 'android' }}
run: sudo apt install gcc-multilib
run: |
sudo apt-get update
sudo apt-get install gcc-multilib
- name: Setup LLVM
uses: Devolutions/actions-public/setup-llvm@v1