From cebd4cb41946dccfdf0e0b6e70d8fd147d65ebca Mon Sep 17 00:00:00 2001 From: Codex Date: Thu, 9 Apr 2026 13:02:52 +0200 Subject: [PATCH] Install libclang for monero_c consistency --- .gitea/workflows/consistency.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.gitea/workflows/consistency.yml b/.gitea/workflows/consistency.yml index 4babb3e..826ba04 100644 --- a/.gitea/workflows/consistency.yml +++ b/.gitea/workflows/consistency.yml @@ -45,6 +45,11 @@ jobs: fetch-depth: 1 submodules: false + - name: Install libclang for ffigen + run: | + sudo apt-get update + sudo apt-get install -y clang libclang-14-dev llvm-14 + - name: Setup Flutter uses: https://github.com/subosito/flutter-action@v2 with: @@ -56,6 +61,8 @@ jobs: dart pub get - name: Regenerate Dart bindings + env: + LIBCLANG_PATH: /usr/lib/llvm-14/lib run: | cd impls/monero.dart ./update_bindings.sh