Skip to content

Commit 41a9373

Browse files
committed
Install binutils for Linux builds
1 parent 01cfc3b commit 41a9373

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/linux.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ jobs:
130130
pythonbuild_changed: ${{ steps.changed.outputs.pythonbuild_any_changed }}
131131
steps:
132132
- uses: actions/checkout@v4
133-
133+
134134
- name: Set up Python
135135
uses: astral-sh/setup-uv@v4
136136

@@ -140,7 +140,7 @@ jobs:
140140
# Convert GitHub labels array to comma-separated string
141141
LABELS=$(echo '${{ toJson(github.event.pull_request.labels.*.name) }}' | jq -r 'join(",")')
142142
echo "labels=$LABELS" >> $GITHUB_OUTPUT
143-
143+
144144
- name: Generate build matrix
145145
id: set-matrix
146146
run: |
@@ -208,6 +208,10 @@ jobs:
208208
docker load --input $f
209209
done
210210
211+
- name: Install system dependencies
212+
run: |
213+
sudo apt-get install binutils
214+
211215
- name: Build
212216
if: ${{ ! matrix.dry-run }}
213217
run: |

0 commit comments

Comments
 (0)