From e544f41a6158a25fb33decf9f137a47299694417 Mon Sep 17 00:00:00 2001 From: Tunglies Date: Thu, 17 Apr 2025 15:49:45 +0800 Subject: [PATCH] chore: fix ci for alpha-for-linux-arm --- .github/workflows/alpha.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/alpha.yml b/.github/workflows/alpha.yml index 537c000a..386cceae 100644 --- a/.github/workflows/alpha.yml +++ b/.github/workflows/alpha.yml @@ -362,9 +362,14 @@ jobs: sudo mv /tmp/sources.list /etc/apt/sources.list sudo dpkg --add-architecture ${{ matrix.arch }} - sudo apt update + sudo apt-get update -y + sudo apt-get -f install -y - sudo apt install -y \ + sudo apt-get install -y \ + linux-libc-dev:${{ matrix.arch }} \ + libc6-dev:${{ matrix.arch }} + + sudo apt-get install -y \ libxslt1.1:${{ matrix.arch }} \ libwebkit2gtk-4.1-dev:${{ matrix.arch }} \ libayatana-appindicator3-dev:${{ matrix.arch }} \