From dccf5cf8e28c2b08f36e55724c0474c599f2899c Mon Sep 17 00:00:00 2001 From: Nicolas Kruse Date: Mon, 27 Oct 2025 23:28:19 +0100 Subject: [PATCH] ci: updated bin binutils install to improve speed --- .github/workflows/ci.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 31878cd..4bf2e64 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -57,9 +57,8 @@ jobs: - name: Install ARM binutils run: | - which aarch64-linux-gnu-objdump || echo "Not found: aarch64-linux-gnu-objdump" - sudo apt-get install --no-install-recommends -y binutils-aarch64-linux-gnu - + sudo apt-get download binutils-aarch64-linux-gnu + sudo dpkg -i binutils-aarch64-linux-gnu_*.deb - name: Generate debug asm files if: strategy.job-index == 0 @@ -189,4 +188,4 @@ jobs: else echo "Updating existing release for $TAG" gh release upload "$TAG" release/* --clobber - fi \ No newline at end of file + fi