Skip to content

Commit

Permalink
Install binutils for Linux builds
Browse files Browse the repository at this point in the history
  • Loading branch information
zanieb committed Dec 20, 2024
1 parent 01cfc3b commit 652a5d6
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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: |
Expand Down Expand Up @@ -208,6 +208,10 @@ jobs:
docker load --input $f
done
- name: Install system dependencies
run: |
apt install binutils
- name: Build
if: ${{ ! matrix.dry-run }}
run: |
Expand Down

0 comments on commit 652a5d6

Please sign in to comment.