From 1e34429f52f1cfb11347b76a88bbb7776cc57f70 Mon Sep 17 00:00:00 2001 From: Alex Clarke Date: Sun, 14 Sep 2025 15:25:09 -0600 Subject: [PATCH] ci: Force install the latest libclang --- .github/workflows/release.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 99006a5..c14b231 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -268,11 +268,12 @@ jobs: shell: bash run: echo "BUILD_CMD=cross" >> $GITHUB_ENV -# - name: Installing needed Ubuntu dependencies -# if: matrix.os == 'ubuntu-latest' -# shell: bash -# run: | -# sudo apt-get -y update + - name: Installing needed Ubuntu dependencies + if: matrix.os == 'ubuntu-latest' + shell: bash + run: | + sudo apt-get -y update + sudo apt-get install -y libclang # case ${{ matrix.target }} in # arm*-linux-*) sudo apt-get -y install gcc-arm-linux-gnueabihf ;; # aarch64-*-linux-*) sudo apt-get -y install gcc-aarch64-linux-gnu ;;