From 41a9373e0ed4a8d00a13ac5f690e7bbe3ffdc1ed Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Fri, 20 Dec 2024 14:45:54 -0600 Subject: [PATCH] Install `binutils` for Linux builds --- .github/workflows/linux.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index f2bf45fb..ec1b5b9c 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -130,7 +130,7 @@ jobs: pythonbuild_changed: ${{ steps.changed.outputs.pythonbuild_any_changed }} steps: - uses: actions/checkout@v4 - + - name: Set up Python uses: astral-sh/setup-uv@v4 @@ -140,7 +140,7 @@ jobs: # Convert GitHub labels array to comma-separated string LABELS=$(echo '${{ toJson(github.event.pull_request.labels.*.name) }}' | jq -r 'join(",")') echo "labels=$LABELS" >> $GITHUB_OUTPUT - + - name: Generate build matrix id: set-matrix run: | @@ -208,6 +208,10 @@ jobs: docker load --input $f done + - name: Install system dependencies + run: | + sudo apt-get install binutils + - name: Build if: ${{ ! matrix.dry-run }} run: |