From 4a81c5d7cc2d3055d018e6da0f051850b7021c6c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Cortier?= <3809077+CBenoit@users.noreply.github.com> Date: Mon, 2 Jun 2025 17:46:25 -0400 Subject: [PATCH] ci: properly update apt mirrors for Android target (#798) --- .github/workflows/nuget-publish.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/nuget-publish.yml b/.github/workflows/nuget-publish.yml index 5532abf9..e76f4e56 100644 --- a/.github/workflows/nuget-publish.yml +++ b/.github/workflows/nuget-publish.yml @@ -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